我想在點擊完成時在列表視圖項上設置背景顏色。 自定義適配器用於Android中的列表視圖如何在Android中更改選定的行背景顏色?
1
A
回答
5
保存點擊項目的位置並從getView()的適配器位置中檢查它。如果兩者都相同,則設置任何背景色或資源爲
convertView.setBackgroundColor(Color.WHITE);
or
convertView.setBackgroundResource(R.drawable.bg);
其中convertView是適配器的虛擬佈局。
+0
謝謝,但。更改所選值時,顏色不會移除。 –
+0
在if if else條件下寫上面的代碼。也就是說,如果兩者都相同,那麼您選擇的顏色和其他默認顏色相同。它可能會幫助你。 –
+0
和無效的項目點擊列表視圖。作爲lstView.invalidateViews(); –
0
myDrawable.xml
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<!-- focused -->
<item android:state_focused="true" android:drawable="@color/YOUR_COLOR_HERE" />
<!-- focused and pressed-->
<item android:state_focused="true" android:state_pressed="true" android:drawable="@color/YOUR_COLOR_HERE" />
<!-- pressed -->
<item android:state_pressed="true" android:drawable="@color/YOUR_COLOR_HERE" />
<!-- default -->
<item android:drawable="@color/YOUR_COLOR_HERE" />
</selector>
main.xml中
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/myview"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="top"
android:background="@drawable/myDrawable">
<!-- other views in layout-->
</LinearLayout>
或者添加這個屬性給你的ListView
android:listSelector="@android:color/darker_gray"
0
<item android:state_activated="true">
<shape android:shape="rectangle">
<solid android:color="#333333" />
<padding android:left="5dp" android:right="5dp" />
</shape></item>
<item><shape android:shape="rectangle">
<solid android:color="#222222" />
</shape></item>
相關問題
- 1. 如何在android中首選更改imageview背景顏色?
- 2. 如何更改datagridview選定的行背景顏色?
- 3. 我如何更改android中選項卡的背景顏色?
- 4. C#更改背景顏色特定行
- 5. 更改Android Spinner中選定項目的背景顏色
- 6. 如何更改LongListSelecter中選定項目的背景顏色?
- 7. 如何更改Windows Phone中選定項目的背景顏色?
- 8. 如何更改ListView中選定項目的背景顏色?
- 9. 如何更改android中特定日期的背景顏色?
- 10. 我如何更改jtabbedpane選定的選項卡背景顏色
- 11. JTable中如何更改背景顏色
- 12. 如何更改RichTextBox中特定行的背景顏色?
- 13. 如何更改datagridview c#.net中特定行的背景顏色?
- 14. 如何更改特定行jQuery jTable中的背景顏色?
- 15. 如何更改我的圖像選定的背景顏色?
- 16. 更改ListView的背景選擇顏色?
- 17. 更改所選JToggleButton的背景顏色
- 18. 更改Android菜單的背景顏色
- 19. Android:更改片段的背景顏色
- 20. 在運行時更改背景顏色
- 21. 如何在android中更改條形圖的背景顏色?
- 22. 如何更改gnuplot的背景顏色?
- 23. 如何更改PopupMenu背景的顏色
- 24. 如何更改SFSafariViewController的背景顏色?
- 25. 如何更改ListViewItem的背景顏色?
- 26. 如何更改Radscheduler的背景顏色
- 27. 如何更改apDiv的背景顏色?
- 28. 如何更改NSPopupButton的背景顏色?
- 29. 如何更改ggvis的背景顏色?
- 30. 如何更改JOptionPane的背景顏色?
看看這篇文章:http://udinic.wordpress.com/2011/07/01/selectablelistview-make-selection-work/它應該幫助你實現。 – Gridtestmail
當我改變選定的顏色不從那裏刪除。 –