我的問題的標題幾乎總結了我想問的問題在描述中,我將詳細描述我的問題。如何更改Android中ExpandableListView的背景顏色?
所以我有一個ExpandableListView,它在屏幕上打印出黑色的白色文字。當我按下列表時,它會被消耗,我可以選擇其中的細節。它看起來是這樣的:
|--------------------------|
|black color |
| Title text(in white) |
| |
|__________________________|
| Item 1 (black text with white background)
| Item 2 |
| Item N... |
所以我的問題是如何改變的「文本標題」內的背景色,把一個限制在標題顯示的符號的數量?
這裏是我的XML文件:
<ScrollView
android:layout_width="fill_parent"
android:layout_height="228dp" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#f4f4f4"
android:orientation="vertical" >
<ExpandableListView
android:id="@+id/lvExp"
android:layout_width="match_parent"
android:layout_height="485dp" >
</ExpandableListView>
</LinearLayout>
</ScrollView>
項目。 XML:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="55dip"
android:orientation="vertical" >
<TextView
android:id="@+id/lblListItem"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textSize="17dip"
android:paddingTop="5dp"
android:paddingBottom="5dp"
android:paddingLeft="?android:attr/expandableListPreferredChildPaddingLeft" />
</LinearLayout>
Group.XML
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="8dp"
android:background="#000000">
<TextView
android:id="@+id/lblListHeader"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:paddingLeft="?android:attr/expandableListPreferredItemPaddingLeft"
android:textSize="17dp"
android:textColor="#f4f4f4"
android:background="#323232"/>//this only changes some part of the background just around the text ONLY
</LinearLayout>
你是什麼意思「把限制在標題中顯示的符號數」? – Shahzeb
例如,如果標題是「我愛吃肉」,屏幕上將出現 「我愛吃......」 – user3182266
爲textview添加android:singleLine =「true」屬性 – Shahzeb