我目前已经定义了一个ExpandableListView
允许我的第二个GroupView
列表在其上方包含标题的方法。然而,这看起来对用户没有吸引力,因为展开箭头的流向没有与文本对齐,而是在视图的中心。有没有人对我可以做些什么来使它看起来更有吸引力有任何子问题?我需要在第二组之后有一个标题。
这段代码是我GroupView
在我的自定义适配器中设置的。
public View getGroupView(int groupPosition, boolean isExpanded, View convertView,
ViewGroup parent) {
TextView groupTitle = null;
LayoutInflater layoutInflater = (LayoutInflater) mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View v = null;
if(groupPosition == 1){
v = layoutInflater.inflate(R.layout.custom_first_major_language_group_row, null);
} else {
v = layoutInflater.inflate(R.layout.custom_language_group_row, null);
}
groupTitle = (TextView) v.findViewById(R.id.text_element);
String myText = this.getGroup(groupPosition).toString();
groupTitle.setText(myText);
return v;
}
custom_language_group_row.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<TextView
android:id="@+id/text_element"
android:layout_width="fill_parent"
android:layout_height="48dip"
android:textSize="20sp"
android:textColor="#fff"
android:layout_marginLeft="48dip"
android:gravity="center_vertical"
android:text = "Language Group Name"/>
</RelativeLayout>
custom_first_major_language_group_row.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<TextView
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="Major Languages"
android:textColor="#000"
android:background="#fff"
android:id="@+id/majorLanguageTitle"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:layout_centerHorizontal="true"></TextView>
<TextView
android:id="@+id/text_element"
android:layout_width="fill_parent"
android:layout_height="48dip"
android:textSize="20sp"
android:textColor="#fff"
android:layout_marginLeft="48dip"
android:gravity="center_vertical"
android:layout_below="@+id/majorLanguageTitle"
android:text = "Language Group Name"/>
</RelativeLayout>
如果您对如何使下拉箭头与文本对齐有任何想法,将不胜感激。