可扩展列表GroupView的箭头需要与不在View中居的文本对齐

时间:2012-06-18 01:03:53

标签: android xml android-layout expandablelistview

我目前定义了一个ExpandableListView,允许我的第二个GroupView列表包含其上方的标题。但是,这对用户来说并不吸引人,因为扩展箭头的流程未与文本对齐,而是与视图的中心对齐。有没有人有任何关于我能做什么的子问题,以使这看起来更吸引人?我需要在第二组之后有一个标题。

enter image description here

此代码用于在我的自定义适配器中设置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>

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

1 个答案:

答案 0 :(得分:0)

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

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