自定义 Button 选择器
程序员Android
共 509字,需浏览 2分钟
·
2020-12-02 02:46
和你一起终身学习,这里是程序员Android
经典好文推荐,通过阅读本文,您将收获以下知识点:
一、自定义Button 背景选择器
二、自定义Buton 素材
三、自定义Button 背景
Android
中自带的Button
样式比较丑,为了美化Button
可使用一下方法。
实现效果如下:
自定义 Button 实现效果
一、自定义Button 背景选择器
自定义Button
背景选择器 custom_btn_selector.xml
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/btn_pressed" android:state_pressed="true"/>
<item android:drawable="@drawable/btn_pressed" android:state_focused="true"/>
<item android:drawable="@drawable/btn_normal"/>
selector>
二、自定义Buton 素材
btn_pressed.9.png
btn_normal.9.png
三、自定义Button 背景
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginTop="10dp"
android:textColor="@android:color/white"
android:textSize="18sp"
android:background="@drawable/custom_btn_green_selector"
android:text="自定义Button选择器" />
至此,本篇已结束。转载网络的文章,小编觉得很优秀,欢迎点击阅读原文,支持原创作者,如有侵权,恳请联系小编删除。同时感谢您的阅读,期待您的关注。
点个在看,方便您使用时快速查找!
评论