使用OnItemClickListener时关于焦点颜色的设置问题

      当我们使用OnItemClickListener来改变Item以使其比较突出时,我们一般采用如下的代码。

public void onItemClick(AdapterView<?> parent, View view, int arg2,
					long arg3) {
				//恢复每个单元格背景色
				TextView categoryTitle;
				for(int i=0;i<parent.getCount();i++)
				{
					categoryTitle = (TextView) parent.getChildAt(i);
					categoryTitle.setTextColor(0XFFADB2AD);
					categoryTitle.setBackgroundDrawable(null);
				}
				//设置选择单元格的背景色
				 categoryTitle=(TextView)view;
				categoryTitle.setTextColor(0XFFFFFFFF);
				categoryTitle.setBackgroundColor(R.drawable.categorybar_item_background);

 这样焦点才会出现这样的效果:

 

 

  如果我们新建一个文件夹比如人color和drawable,然后通过里面的xml文件来调用颜色,代码如下。

 

?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">

    <item
         android:state_focused="true" 
        android:color="#ffffffff"/>
    <item 
        android:state_pressed="true" 
        android:color="#ffffffff"/>
    <item 
          android:state_selected="true" 
          android:color="#ffffffff"/>
    <item 
       android:color="#ffabd2ad"/>

 

public void onItemClick(AdapterView<?> parent, View view, int arg2,
					long arg3) {
				//恢复每个单元格背景色
				TextView categoryTitle;
				for(int i=0;i<parent.getCount();i++)
				{
					categoryTitle = (TextView) parent.getChildAt(i);
					categoryTitle.setTextColor(R.color.category_title_normal_background);
					categoryTitle.setBackgroundDrawable(null);
				}
				//设置选择单元格的背景色
				 categoryTitle=(TextView)view;
				categoryTitle.setTextColor(R.color.white);
				categoryTitle.setBackgroundColor(R.drawable.categorybar_item_background);

 运行后的结果如图:


 


 
也就是颜色更愿意接受的是直接给一个值,而不是通过xml文件来实现。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值