1

我目前已经定义了一个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>

如果您对如何使下拉箭头与文本对齐有任何想法,将不胜感激。

4

1 回答 1

0

所以我的答案是一个有点蹩脚的答案。我遇到了这个问题,但我注意到我的文本仅偏离中心约 4-5 dp(测试后)。因此,我没有将展开/折叠图像移动到正确居中,而是将文本居中,然后将底部边距添加到 5dp 的文本视图中。所以现在我的文本视图似乎更接近展开/折叠图像。

不是首选的解决方案,但它对我有用。

于 2013-09-16T03:44:19.723 回答