码迷,mamicode.com
首页 > 其他好文 > 详细

anroid 点击图形缩小

时间:2015-08-19 09:29:54      阅读:96      评论:0      收藏:0      [点我收藏+]

标签:xml   图形   点击控件缩小   点击图形缩小   

这个功能是由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就可以了

技术分享

版权声明:本文为博主原创文章,未经博主允许不得转载。

anroid 点击图形缩小

标签:xml   图形   点击控件缩小   点击图形缩小   

原文地址:http://blog.csdn.net/a4384142/article/details/47775113

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!