繁体   English   中英

Android ListView里面的相对布局

[英]Android listview inside relative layout

有人在布局内实现了ExpandableListView吗? 我正在尝试做,但是身高有问题。 我想使其成为“ wrap_content”,以便在展开时查看完全展开的视图。 但是不幸的是,使用“ wrap_content”参数我无法达到这个结果。 有人可以帮忙吗?

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="fill_parent" >

<ScrollView
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

<RelativeLayout 
    android:layout_width="wrap_content"
    android:layout_height="fill_parent" >

<TextView
    android:id="@+id/user"
    android:layout_width="match_parent"
    android:layout_height="100dp"
    android:layout_alignParentTop="true"
    android:layout_below="@+id/rl"
    android:layout_toRightOf="@+id/user"
    android:paddingLeft="3dp"
    android:text="Top User"
    android:textColor="#000000"
    android:textSize="22dp" />

<ExpandableListView
    android:id="@+id/elvMain"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_below="@+id/user"
    android:layout_above="@+id/about" >
</ExpandableListView>

<TextView
    android:id="@+id/about"
    android:layout_width="match_parent"
    android:layout_height="100dp"
    android:layout_alignParentBottom="true"
    android:text="Bottom About"
    android:textColor="#6f6f6f"
    android:textSize="24dp"
    android:textStyle="bold" />
</RelativeLayout>
</ScrollView>
    </RelativeLayout>

在ExpandableListView中分组行:

<?xml version="1.0" encoding="utf-8"?>

  <TextView android:id="@+id/groupname"
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:textStyle="bold"
  android:textSize="20dp"
  android:paddingLeft="40dp"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:minHeight="?android:attr/listPreferredItemHeight"
  android:textAppearance="?android:attr/textAppearanceLarge"
  android:background="@drawable/expanded_upper_selector"
  android:gravity="center_vertical"/>

子行:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/ingredients_selector">



<TextView android:id="@+id/ingredients_second_layer_text"
     android:textStyle="bold"
     android:textSize="20dp"
     android:paddingLeft="50dp"
     android:paddingRight="50dp"
     android:textColor="@color/dark_orange"
     android:layout_width="match_parent"
     android:layout_height="wrap_content"
     android:minHeight="?android:attr/listPreferredItemHeight"
     android:textAppearance="?android:attr/textAppearanceLarge"
     android:gravity="center_vertical"/>

尝试对XML进行一些修改:

Your_XYZ_Main_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" >
    <ScrollView
        android:id="@+id/scrollView1"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_centerHorizontal="true"
        android:layout_centerVertical="true"
        android:background="#000000" >

        <LinearLayout
            android:orientation="vertical"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:background="#00ff00" >

            <TextView
                android:id="@+id/user"
                android:layout_width="match_parent"
                android:layout_height="100dp"
                android:paddingLeft="3dp"
                android:text="Top User"
                android:textColor="#111111"
                android:background="#eeeeee"
                android:textSize="22dp" />
            <ExpandableListView
                android:id="@+id/elvMain"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_weight="1" >
            </ExpandableListView>
            <TextView
                android:id="@+id/about"
                android:layout_width="match_parent"
                android:layout_height="100dp"
                android:text="Bottom About"
                android:textColor="#6f6f6f"
                android:textSize="24dp"
                android:textStyle="bold" />

        </LinearLayout>
    </ScrollView>
</RelativeLayout>

Group_Row_XML ::

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

        <TextView
            xmlns:android="http://schemas.android.com/apk/res/android"
            android:id="@+id/groupname"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="#159357"  //  YOUR_BACKGROUND
            android:gravity="center_vertical"
            android:minHeight="?android:attr/listPreferredItemHeight"
            android:paddingLeft="40dp"
            android:text="Parent text"
            android:textAppearance="?android:attr/textAppearanceLarge"
            android:textSize="20dp"
            android:textStyle="bold" />

    </RelativeLayout>

Child_Row_XML ::

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >


<TextView android:id="@+id/ingredients_second_layer_text"
     android:textStyle="bold"
     android:textSize="20dp"
     android:paddingLeft="50dp"
     android:paddingRight="50dp"
     android:textColor="#ff2211"  //  YOUR_COLOR
     android:text="Child Text"
     android:layout_width="match_parent"
     android:layout_height="wrap_content"
     android:minHeight="?android:attr/listPreferredItemHeight"
     android:textAppearance="?android:attr/textAppearanceLarge"
     android:gravity="center_vertical"/>


</RelativeLayout>

查看此链接-http://about-android.blogspot.in/2010/04/steps-to-implement-expandablelistview.html

这里只添加了一个自定义文本,您可以通过类似的方式添加第二个自定义文本。尝试执行此操作,如果您有任何疑问可以随时提出,希望对您有所帮助。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM