Android的selector,Button按钮背景选择器

来源:互联网 发布:mysql cst时区 编辑:程序博客网 时间:2024/06/10 03:34

Android的selector,Button按钮背景选择器

http://www.16rd.com/thread-16498-1-1.html

http://android.blog.51cto.com/268543/564581/

<RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="20dp"
        android:background="@color/bg_gray" >


        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_marginLeft="20dp"
            android:background="@drawable/selector_huoqibao"
            android:gravity="center"
            android:paddingLeft="55dp"
            android:paddingRight="55dp"
            android:text="转入"
            android:textColor="@drawable/selector_huoqibao_font"
            android:textSize="14dp" />


        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:layout_marginRight="20dp"
            android:background="@drawable/shape_curren_tresure_btn"
            android:gravity="center"
            android:paddingLeft="55dp"
            android:paddingRight="55dp"
            android:text="转出"
            android:textColor="#157EFB"
            android:textSize="14dp" />
    </RelativeLayout>

0 0
原创粉丝点击