两个ListView和一个按钮

时间:2012-11-09 12:31:50

标签: android listview button scroll

我正在做一个Android应用程序,我想将这三个部分分开布局:

enter image description here

但现在按钮位于第二个列表视图上,但在屏幕底部,我不知道为什么。

我不知道是否必须使用relativeLayout或linearLayout来包含listviews,而文本是在relativelayout / linearLayout之内或之外,而最后一个按钮是什么?

这是我的代码:

    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
       android:layout_width="fill_parent"
       android:layout_height="fill_parent"
       android:orientation="vertical" >

   <TextView android:id="@+id/imageSelected"
          android:text="@string/imgSelected"
          android:layout_width="wrap_content"
              android:layout_height="fill_parent"
              android:layout_marginBottom="3dip"/>

   <LinearLayout 
     android:id="@+id/linearLayoutImagenes"
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     android:layout_alignParentTop="true"
     android:layout_below="@+id/imageSelected" >

   <ListView
      android:id="@+id/listaFusionPhotos"
      android:layout_width="fill_parent"
      android:layout_height="fill_parent" 
      />

   </LinearLayout >

    <TextView android:id="@+id/nameSelected"
          android:text="@string/namSelected"
          android:layout_width="wrap_content"
          android:layout_height="fill_parent"
          android:layout_below="@+id/linearLayoutImagenes"
          android:layout_marginBottom="3dip"/>


<LinearLayout  
  android:id="@+id/linearLayoutNombres"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_alignParentTop="true"
      android:layout_below="@+id/nameSelected"
      >

    <ListView
       android:id="@+id/listaFusionNombres"
       android:layout_width="fill_parent"
       android:layout_height="fill_parent"/>

   </LinearLayout >

   <Button
      android:id="@+id/fusion"
      android:layout_width="160dip"
      android:layout_height="wrap_content"
      android:layout_below="@+id/linearLayoutNombres"
      android:layout_marginTop="3dip"
      android:text="Fusionar" 
      android:onClick="Mostrar_Registrados"
      android:layout_alignParentBottom="true"/>



</RelativeLayout>

2 个答案:

答案 0 :(得分:4)

试试这个。这看起来与图片完全相同。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:weightSum="11" >

<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="0dp"
    android:text="Medium Text"
    android:textAppearance="?android:attr/textAppearanceMedium" 
    android:layout_weight="1"/>

<ListView
    android:id="@+id/listView1"
    android:layout_width="fill_parent"
    android:layout_height="0dp" 
    android:layout_weight="4">
</ListView>

<TextView
    android:id="@+id/textView2"
    android:layout_width="wrap_content"
   android:layout_height="0dp"
    android:layout_weight="1"
    android:text="Medium Text"
    android:textAppearance="?android:attr/textAppearanceMedium" />

<ListView
    android:id="@+id/listView2"
    android:layout_width="fill_parent"
    android:layout_height="0dp" 
    android:layout_weight="4">
</ListView>

<Button
    android:id="@+id/button1"
    android:layout_width="wrap_content"
    android:layout_height="0dp"
    android:layout_weight="1"
    android:text="Button" />

</LinearLayout>

答案 1 :(得分:0)

<LinearLayout  
     android:id="@+id/linearLayoutNombres"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_alignParentTop="true"
      android:layout_below="@+id/nameSelected"
      android:layout_above="@+id/fusion" // "line added"
>
    <Button
      android:id="@+id/fusion"
      android:layout_width="160dip"
      android:layout_height="wrap_content"
      android:layout_below="@+id/linearLayoutNombres" --> "remove this line"
      android:layout_marginTop="3dip"
      android:text="Fusionar" 
      android:onClick="Mostrar_Registrados"
      android:layout_alignParentBottom="true"/>