Button类的继承结构:
java.lang.Object
? android.view.View
?android.widget.TextView
?android.widget.Button
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<Button
android:id = "@+id/mybut1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#FF0000"
android:textSize="12px"
android:text="按钮组件" />
</RelativeLayout>
Android中的基本控件(上)--按钮控件Button,布布扣,bubuko.com
原文:http://blog.csdn.net/waldmer/article/details/23127919