2016-04-12 2 views
0
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
      android:layout_width="match_parent" 
      android:layout_height="match_parent"> 
    <TextView 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:text="Some Text1" 
     android:textSize="22dp" 
     android:textStyle="bold" 
     android:textColor="@color/black" 
     android:id="@+id/header" 
     android:layout_centerHorizontal="true"/> 
    <ListView 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_below="@id/header" 
     android:id="@+id/list" 
     /> 
    <TextView 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:text="Some Text2" 
     android:layout_below="@id/list" 
     android:id="@+id/text" 
     /> 
    <ImageView 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:id="@+id/image" 
     android:layout_below="@id/text" 
     /> 
</RelativeLayout> 

Выше мой макет, ListView прокручивать, но когда я прокрутки в нижней части ListView я ожидаю TextView и ImageView быть вынесено после listview.However они не являются как показано на рисунке all.List охватывает всю страницу (кроме заголовка вверху) Что я мог сделать, чтобы отобразить текстовое изображение и изображение ниже списка?Соображения в соответствии с ListView не отображаются в относительной макете

+0

измените свой относительный макет на линейную компоновку и установите вес для каждого элемента. – dex

+0

Спасибо, но не могли бы вы немного разобраться? Я пробовал с линейной компоновкой с весами, но теперь текст и изображение показываются до того, как я прокручу, так как listview не охватывает всю страницу, я не хочу, чтобы пользователь просматривал текст и изображение перед прокруткой в ​​нижней части списка. – usry

+1

если вы хотите показать текст и изображение в последнем списке в нижнем колонтитуле, то вы добавите нижний колонтитул в listview, нижний колонтитул будет представлять собой xml, включая текст и изображение. –

ответ

1

Есть два способа сделать это: Первого LinearLayout используя вес 1 до Listview:

<?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="match_parent" 
    android:orientation="vertical"> 
    <TextView 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:text="Some Text1" 
     android:textSize="22dp" 
     android:textStyle="bold" 
     android:textColor="@color/black" 
     android:id="@+id/header" 
     android:layout_centerHorizontal="true"/> 
    <ListView 
     android:layout_width="wrap_content" 
     android:layout_height="0dp" 
     android:layout_weight="1" 
     android:id="@+id/list" 
     /> 
    <TextView 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:text="Some Text2" 
     android:id="@+id/text" 
     /> 
    <ImageView 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:id="@+id/image" 
     /> 
</LinearLayout> 

других RelativeLayout:

<?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"> 

    <TextView 
     android:id="@+id/header" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_centerHorizontal="true" 
     android:text="Some Text1" 
     android:textColor="@color/black" 
     android:textSize="22dp" 
     android:textStyle="bold" /> 

    <ListView 
     android:id="@+id/list" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_above="@+id/text" 
     android:layout_below="@id/header" /> 

    <TextView 
     android:id="@+id/text" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_above="@+id/image" 
     android:text="Some Text2" /> 

    <ImageView 
     android:id="@+id/image" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignParentBottom="true" /> 
</RelativeLayout> 

Надеется, что это помогает.