国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統 > Android > 正文

Android 處理OnItemClickListener時關于焦點顏色的設置問題

2019-12-12 03:45:26
字體:
來源:轉載
供稿:網友

Android 處理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_

 運行后的結果如圖:


也就是顏色更愿意接受的是直接給一個值,而不是通過xml文件來實現。

大小: 5.6 KB 大小: 4.8 KB

感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 沾化县| 海门市| 吉安县| 右玉县| 龙井市| 通辽市| 循化| 栖霞市| 沅陵县| 习水县| 堆龙德庆县| 石城县| 平阴县| 新民市| 惠安县| 彭阳县| 长治县| 龙里县| 琼结县| 民乐县| 英德市| 大兴区| 张北县| 邓州市| 大邑县| 乌苏市| 义乌市| 怀宁县| 屏南县| 全州县| 旺苍县| 呼图壁县| 积石山| 海安县| 六盘水市| 宁德市| 建水县| 礼泉县| 普兰县| 青浦区| 西平县|