这个功能是由selector + shape xml文件实现的 主要原理是把stroke的width变大把图形挤压变小,我用的是textview做测试,不知道其它控件是否生效,在此声明,以防参考者误用,也许还有更简单的方法,但我这里只是提供一种可以实现的方法,不喜勿喷,觉得有用的请赞。
首先你的写一个点击时候要显示的样子
定义为 suoxiao.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
//颜色为你的背景颜色
<stroke android:width="4dp" android:color="#326475" />
颜色为控件原有颜色
<solid android:color="#ff202a"/>
</shape>
在者你要设置没有点击时的显示
shape.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<solid android:color="#ff202a" />
</shape>
最关键的一步就是selector.xml
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:state_pressed="true" android:drawable="@drawable/application_menu_first_suoxiao"></item>
<item android:drawable="@drawable/application_menu_first_shape" android:state_pressed="false"></item>
</selector>
设置background为selector就可以了
版权声明:本文为博主原创文章,未经博主允许不得转载。
时间: 2024-10-07 20:41:22