Button按钮的使用

示例:一个TextView 几个button按钮,当点击不同的button按钮的时候textview中显示出不同的背景颜色跟内容,已经通过按键也更改textview中的背景颜色跟内容。

代码实现如下:

     1):在strings.xml中定义一些表示颜色的属性。代码如下:

            


    Hello World, ButtonSimpleActivity!
    Button组件的运用
    Red button
    Blue button
    Yellow button
        
    #FF0000FF
    #FF000000
    #FFFF0000
    #FFFFFF00
    #FFFFFFFF

2);在main.xml中生成相应的UT,代码如下:

  
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

            android:id="@+id/myTextView"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/hello"
        android:layout_gravity="top"
        android:background="@drawable/WHITE"/>

    

你可能感兴趣的:(Android)