我想在我的Android應用程序中爲可擴展列表視圖設置新樣式。我創建一個group_indicator.xml文件中繪製文件夾,我在哪裏寫代碼:擴展列表設置樣式
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_empty="true" android:drawable="@drawable/arrowright1">
<item android:state_expanded="true" android:drawable="@drawable/arrowdown1">
<item android:drawable="@drawable/arrowright1">
</item></item></item></selector>
然後我在主文件中使用此XML文件在我ExpandableList
觀點:
<ExpandableListView
android:id="@+id/android:list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:groupIndicator="@drawable/group_indicator"
android:layout_weight="1" >
</ExpandableListView>
現在我想爲可展開列表設置更多樣式,我想更改父節點和子節點的外觀。
有沒有其他方法可以做到這一點? 我聽說style.xml文件在res->values
文件夾中,但我不知道如何實現它。 請指導。
你是什麼意思的外觀是簡單的文字風格和顏色或別的東西? – PravinCG
在簡單的可擴展列表中,我們有帶箭頭的文本。它只是簡單地實現了可擴展列表。我想用一些更好的視圖來定製它。雖然我已經用簡單的方法完成了這個工作,但我希望能得到您寶貴的建議。 –