android设置按钮按下的不同效果图
Posted Sunnor
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android设置按钮按下的不同效果图相关的知识,希望对你有一定的参考价值。
1 <!-- 按钮设置按下去的不同效果的方式,设置android:background属性, 2 下面的 button_select实际上是button_select.xml --> 3 4 <Button 5 android:id="@+id/btn_contentprovider" 6 android:layout_width="wrap_content" 7 android:layout_height="wrap_content" 8 android:background="@drawable/button_select" 9 android:text="无图的联系人" > 10 </Button>
button_select.xml :
1 <?xml version="1.0" encoding="utf-8"?> 2 <selector xmlns:android="http://schemas.android.com/apk/res/android"> 3 4 <!-- 本xml名:button_select.xml, 设置按钮按下去的效果,实际上就是不同的图片 --> 5 <item android:drawable="@drawable/btn_normal" android:state_pressed="false"></item> 6 <item android:drawable="@drawable/btn_pressed" android:state_pressed="true"></item> 7 8 </selector>
btn_normal.png:
btn_pressed.png
以上是关于android设置按钮按下的不同效果图的主要内容,如果未能解决你的问题,请参考以下文章
通过按下 Android Studio 中的片段中的按钮进入新页面
在 Android 片段中使用 onBackPressed()