我想在ExpandableListView中更改组和子项的textview样式,但它不起作用。
在创建适配器的第一个文本视图中将是(lblListHeader),第二个将是(lblListItem)
mAdapter = new HadithExpandableListAdapter(mGroupsCursor, this,
R.layout.drawer_list_ahadith, R.layout.drawer_list_ahadith,
new String[] { "ChapterName" },
new int[] { R.id.lblListHeader }, new String[] { "HadithTitel" },
new int[] { R.id.lblListItem });
在布局中这是包含两个textview
的文件<?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" />
<TextView
android:id="@+id/lblListHeader"
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>