按钮(Button)组件的功能与用法

Button继承了TextView,它主要是在UI界面上生成一个按钮,该按钮可以供用户单击,当用户单击按钮时,按钮会触发一个onClick事件。
按钮使用起来比较容易,可以通过指定android:background属性为按钮增加背景颜色或背景图片,如果将背景图片设为不规则的背景图片,则可以开发出各种不规则形状的按钮。
如果需要让按钮的背景颜色、背景图片随用户动作改变,则可以考虑使用自定义Drawable对象来实现。
实例:
irregular_button.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="match_parent">
    
    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="文字带阴影的按钮"
        android:textSize="12pt"
        android:shadowColor="#aa5"
        android:shadowRadius="1"
        android:shadowDx="5"
        android:shadowDy="5" />
    
    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="普通按钮"
        android:textSize="10pt"
        android:background="@drawable/red"/>
    
    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@drawable/button_selector"
        android:textSize="30px"
        android:text="带文字的图片按钮"/>
LinearLayout>

button_selector.xml



<selector xmlns:android="http://schemas.android.com/apk/res/android">
    
    <item android:state_pressed="true"
        android:drawable="@drawable/red"/>
    
    <item android:state_pressed="false"
        android:drawable="@drawable/purple"/>
selector>

按钮(Button)组件的功能与用法_第1张图片

资源文件purple.png

按钮(Button)组件的功能与用法_第2张图片

按钮(Button)组件的功能与用法_第3张图片

你可能感兴趣的:(Android)