Eclipse中的介面內容資訊設定——Button
阿新 • • 發佈:2020-12-11
Eclipse中的介面內容資訊設定——Button
XML檔案
1.如何拉長按鈕
在Button里加
android:layout_width="match_parent"
效果
2.如何調整按鈕與上面的文字框之間的距離
在Button里加
android:layout_marginTop="1dp"
效果
3.如何設定按鈕裡文字
在Button里加
android:text="登入"
效果
4.如何設定按鈕裡文字的顏色
在Button里加
android:textColor="#fff"
效果
5.如何設定按鈕裡文字的大小
在Button里加
android:textSize="20sp"
效果
6.如何在按鈕裡新增圖片
在Button里加
android:background="@drawable/bg_button"
效果