阅读663 返回首页    go 阿里云 go 技术社区[云栖]


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

Button类的继承结构:

java.lang.Object
  ↳ android.view.View

  android.widget.TextView

  android.widget.Button 

<RelativeLayout xmlns:andro
    xmlns:tools="https://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码
设置文字大小
设置文本



最后更新:2017-04-03 12:56:05

  上一篇:go 使用Cocos2d-x制作三消类游戏Sushi Crush(第一部分)
  下一篇:go RDS 循序渐进 – 闪断篇