如何在我的活动底部显示列表视图?列表视图上方有3个线性布局

时间:2016-07-01 06:08:38

标签: android

我将我的Android屏幕划分为四个垂直部分,我想在屏幕底部显示列表视图,但每当我将它放在底部时,它都不会与底部对齐。即使我将它拉到底部也需要全屏。怎么做?

4 个答案:

答案 0 :(得分:0)

您可以通过以下设计在底部显示列表视图。

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

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1">

        <!--First Part--> 

    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1">

        <!--Second Part-->

    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1">

        <!--Third Part-->

    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1">

        <!--Fourth Part-->
        <ListView
            android:id="@+id/xListView"
            android:layout_width="match_parent"
            android:layout_height="match_parent"/>

    </LinearLayout>

</LinearLayout>

答案 1 :(得分:0)

这可能会对你有所帮助

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:weightSum="4"
android:orientation="vertical"
>
 <LinearLayout
   android:layout_width="match_parent"
   android:layout_weight="1"
   android:layout_height="0dp">
    //first view....
 </LinearLayout>

<LinearLayout
  android:layout_width="match_parent"
  android:layout_weight="1"
  android:layout_height="0dp">
  //second view....
  </LinearLayout>

<LinearLayout
   android:layout_width="match_parent"
   android:layout_weight="1"
   android:layout_height="0dp">
   //third view....
</LinearLayout>

<LinearLayout
    android:layout_width="match_parent"
    android:layout_weight="1"
    android:layout_height="0dp">
    //List view goes here....
 </LinearLayout>

答案 2 :(得分:0)

如果总是需要查看底部所需的列表视图,那么您应该使用rlativelayout。它将通过使用此属性android来帮助您将其正确放置在底部:layout_alignParentBottom =&#34; true&#34;在你的列表视图中。

答案 3 :(得分:0)

垂直方向的线性布局将更有用,而不是 相对布局

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:weightSum="4"
android:orientation="vertical"
>
 <LinearLayout
   android:layout_width="match_parent"
   android:layout_weight="1"
   android:layout_height="0dp">
 </LinearLayout>

<LinearLayout
  android:layout_width="match_parent"
  android:layout_weight="1"
  android:layout_height="0dp">
  </LinearLayout>

<LinearLayout
   android:layout_width="match_parent"
   android:layout_weight="1"
   android:layout_height="0dp">
</LinearLayout>

<LinearLayout
    android:layout_width="match_parent"
    android:layout_weight="1"
    android:layout_height="0dp">

    <ListView
        android:id="@+id/mListView"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>
 </LinearLayout>