Android中的基本控件(上)--按钮控件Button

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>

所有组件垂直摆放
布局管理器宽度为屏幕宽度
布局管理器高度为屏幕高度
定义组件按钮的id,为Activity程序使用
宽度为文字的宽度
高度为文字的高度
文字的颜色RGB码
设置文字大小
设置文本



Android中的基本控件(上)--按钮控件Button,,5-wow.com

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。