您的位置:首页 > 移动开发 > Android开发

控件点击变样,离开后控件还原

2015-09-28 13:30 483 查看
layout布局

<LinearLayout
android:id="@+id/linearlayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
//*设置改变的样式
android:background="@drawable/bg"
//*设置为可点击
android:clickable="true"
android:gravity="center">

<ImageView
android:id="@+id/imageview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/img" />

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingTop="3dp"
android:text="发表微博"
android:textColor="#fff"
android:textSize="14sp" />
</LinearLayout>


drawable文件夹下的bg.xml

<selector xmlns:android="http://schemas.android.com/apk/res/android" >
<!-- 默认-->
<item android:drawable="@drawable/style"/>
<!-- 按下的状态 -->
<item android:state_pressed="true" android:drawable="@drawable/style_en" />
</selector>


drawable文件夹下的style.xml

<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<!-- 圆角大小 -->
<corners android:radius="5dp" />
<!-- 背景颜色 -->
<solid android:color="#00bbdd" />
</shape>


drawable文件夹下的style_en.xml

<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<corners android:radius="5dp" />
<solid android:color="#00ffff" />
</shape>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  android