可扩展列表下方的元素 - 不是浮动页脚

时间:2014-04-02 07:38:33

标签: java android android-layout android-linearlayout expandablelistview

是否有任何选项可以将元素放在可扩展列表下面,让我解释一下:我已经在列表下面实现了元素,但它们的行为类似于页脚 - 浮动在屏幕底部。

但是如果我将元素放在xml中的列表下面,则在展开任何组时元素将被隐藏。

目前我的布局表现得像这样

http://shrani.si/f/2s/ba/ga2VKfi/lay2.jpg

但我希望在列表的末尾是这样的

http://shrani.si/f/42/4m/2GAcNu6T/lay3.jpg

我的布局

<LinearLayout
                android:id="@+id/linearLayoutListExer"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="10dip"
                android:background="#ffffff"
                android:gravity="center_vertical"
                android:orientation="vertical">

                <ExpandableListView
                    android:id="@+id/ExerciseELV"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
                    android:layout_below="@+id/linearLayoutStatus"
                    android:layout_weight="1"
                    android:groupIndicator="@null" />

                <LinearLayout
                    android:id="@+id/relativeFooter"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
                    android:layout_below="@id/linearLayoutListExer"

                    android:background="#ffffff"
                    android:orientation="vertical">

                    <TextView
                        android:id="@+id/textViewBellowExercise"
                        android:layout_width="fill_parent"
                        android:layout_height="wrap_content"
                        android:padding="10dip"
                        android:text="The following exercises will help you lose body weight"
                        android:textAppearance="?android:attr/textAppearanceSmall"

                        />

                    <LinearLayout
                        android:layout_width="fill_parent"
                        android:layout_height="wrap_content"
                        android:layout_below="@id/textViewBellowExercise">


                        <Button
                            android:id="@+id/buttonFaceit"
                            android:layout_width="0dp"
                            android:layout_height="20dp"
                            android:layout_margin="5dp"
                            android:layout_weight="1"
                            android:background="@color/green"
                            android:text="FaceIT!"
                            android:textColor="@color/white" />

                        <Button
                            android:id="@+id/buttonChallenge"
                            android:layout_width="0dp"
                            android:layout_height="20dp"
                            android:layout_margin="5dp"
                            android:layout_weight="1"
                            android:background="@color/red"
                            android:text="Challenge"
                            android:textColor="@color/white" />
                    </LinearLayout>
                </LinearLayout>
            </LinearLayout>

2 个答案:

答案 0 :(得分:1)

您的以下属性应该更改。 代替     android:layout_below="@id/linearLayoutListExer"

你应该写 android:layout_below="@id/ExerciseELV"

带有android:id="@+id/relativeFooter"

的LinearLayout的

这将使底部布局显示在列表视图下方

答案 1 :(得分:0)

我是Android新手,所以我很抱歉任何&#34;愚蠢的&#34;我可能会问的问题。

我最终使用的是addfooterview方法,效果很好。

您需要在其自己的xml中分隔页脚布局,然后对其进行充气并将其添加到可展开的列表视图中。

    View footer=inflater.inflate(R.layout.activity_main_footer,null);
    elv.addFooterView(footer);