您好,登錄后才能下訂單哦!
這篇文章給大家介紹Android開發(fā)中如何設置OnItemClickListener的顏色,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
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);
這樣焦點才會出現(xiàn)這樣的效果:
如果我們新建一個文件夾比如人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文件來實現(xiàn)。
大小: 5.6 KB 大小: 4.8 KB
關于Android開發(fā)中如何設置OnItemClickListener的顏色就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內容。