大马资讯论坛 - 马来西亚中文资讯平台
标题:
[解決] Android如何修改List Highlighter的颜色?Custom Adpater
[打印本页]
作者:
资讯王
时间:
2014-2-23 03:07
标题:
[解決] Android如何修改List Highlighter的颜色?Custom Adpater
[解決] Android如何修改List Highlighter的颜色?Custom Adpater
1. 在res开一个folder叫drawable,在里面create一个xml的档案叫rounded_shape,把以下代码copy进去
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true">
<shape >
<solid android:color="#929292" />
</shape>
</item>
<item>
<shape >
<solid android:color="#FFFFFF" />
</shape>
</item>
</selector>
复制代码
2. 到你的layout foulder找出你的xml,set android:background="@drawable/rounded_shape"
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/rounded_shape">
复制代码
欢迎光临 大马资讯论坛 - 马来西亚中文资讯平台 (http://freeinfo.com.my/)
Powered by Discuz! X3.3