列表下方的按钮未显示

时间:2011-04-15 14:32:29

标签: android listview

我终于设法让我的列表正确显示(http://stackoverflow.com/questions/5662277/how-to-line-up-intger-output-in-custom-android-dialog)。

现在我想在列表下面添加一个按钮。当列表太大时按钮不显示会发生什么。 列表是可滚动的,但就是这样。 此外,滚动条涵盖了一些数据。

这是主要的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">

    <LinearLayout android:id="@+id/lloPlayerNames" xmlns:android="http://schemas.android.com/apk/res/android"
                 android:layout_width="fill_parent" android:layout_height="wrap_content" 
                 android:orientation="horizontal">
      <TextView     android:id="@+id/tvwPlayer1Name" android:layout_weight="1" android:gravity="right"
                    android:layout_width="fill_parent" android:layout_height="wrap_content"/>
      <TextView     android:id="@+id/tvwPlayer2Name" android:layout_weight="1" android:gravity="right"
                    android:layout_width="fill_parent" android:layout_height="wrap_content"/>
      <TextView     android:id="@+id/tvwPlayer3Name" android:layout_weight="1" android:gravity="right"
                    android:layout_width="fill_parent" android:layout_height="wrap_content"/>
      <TextView     android:id="@+id/tvwPlayer4Name" android:layout_weight="1" android:gravity="right"
                    android:layout_width="fill_parent" android:layout_height="wrap_content"
                    android:layout_margin="2dp"/>
    </LinearLayout>
   <ListView android:id="@+id/lvwScores" android:layout_below="@id/lloPlayerNames"
       android:layout_width="fill_parent" android:layout_height="wrap_content"
       android:layout_centerHorizontal="true" />

    <Button android:id="@+id/btnOK  "
     android:layout_height="wrap_content" android:layout_width="wrap_content" 
      android:layout_below="@id/lvwScores" android:layout_weight="1"
     android:text="OK" android:layout_centerHorizontal="true" />
</RelativeLayout>

这是行的一个:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal">
  <TextView android:id="@+id/tvwPlayer1Score" android:layout_weight="1" android:gravity="right"
    android:layout_width="fill_parent" android:layout_height="wrap_content"/>
  <TextView android:id="@+id/tvwPlayer2Score" android:layout_weight="1" android:gravity="right"
    android:layout_width="fill_parent" android:layout_height="wrap_content"/>
  <TextView android:id="@+id/tvwPlayer3Score" android:layout_weight="1" android:gravity="right"
    android:layout_width="fill_parent" android:layout_height="wrap_content"/>
  <TextView android:id="@+id/tvwPlayer4Score" android:layout_weight="1" android:gravity="right"
    android:layout_width="fill_parent" android:layout_height="wrap_content"/>
</LinearLayout>

我尝试将主要部分更改为线性布局,但这更糟糕!这份名单看起来像是一次减肥,而且非常瘦。


尝试:

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

    <LinearLayout android:id="@+id/lloPlayerNames" xmlns:android="http://schemas.android.com/apk/res/android"
                 android:layout_width="fill_parent" android:layout_height="wrap_content" 
                 android:orientation="horizontal">
      <TextView     android:id="@+id/tvwPlayer1Name" android:layout_weight="1" android:gravity="right"
                    android:layout_width="fill_parent" android:layout_height="wrap_content"/>
      <TextView     android:id="@+id/tvwPlayer2Name" android:layout_weight="1" android:gravity="right"
                    android:layout_width="fill_parent" android:layout_height="wrap_content"/>
      <TextView     android:id="@+id/tvwPlayer3Name" android:layout_weight="1" android:gravity="right"
                    android:layout_width="fill_parent" android:layout_height="wrap_content"/>
      <TextView     android:id="@+id/tvwPlayer4Name" android:layout_weight="1" android:gravity="right"
                    android:layout_width="fill_parent" android:layout_height="wrap_content"
                    android:layout_marginRight="2dp"/>
    </LinearLayout>
    <Button android:id="@+id/btnOK"
     android:layout_height="wrap_content" android:layout_width="wrap_content" 
     android:text="OK" android:layout_centerHorizontal="true" 
     layout_alignParentBottom="true"/>
   <ListView android:id="@+id/lvwScores" android:layout_above="@id/btnOK" android:layout_below="@id/lloPlayerNames" 
       android:layout_width="fill_parent" android:layout_height="wrap_content"
       android:layout_centerHorizontal="true" android:layout_weight="1"/>

</RelativeLayout>

我得到的是: enter image description here

当我尝试:

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

    <LinearLayout android:id="@+id/lloPlayerNames" xmlns:android="http://schemas.android.com/apk/res/android"
                 android:layout_width="fill_parent" android:layout_height="wrap_content" 
                 android:orientation="horizontal">
      <TextView     android:id="@+id/tvwPlayer1Name" android:layout_weight="1" android:gravity="right"
                    android:layout_width="fill_parent" android:layout_height="wrap_content"/>
      <TextView     android:id="@+id/tvwPlayer2Name" android:layout_weight="1" android:gravity="right"
                    android:layout_width="fill_parent" android:layout_height="wrap_content"/>
      <TextView     android:id="@+id/tvwPlayer3Name" android:layout_weight="1" android:gravity="right"
                    android:layout_width="fill_parent" android:layout_height="wrap_content"/>
      <TextView     android:id="@+id/tvwPlayer4Name" android:layout_weight="1" android:gravity="right"
                    android:layout_width="fill_parent" android:layout_height="wrap_content"
                    android:layout_marginRight="2dp"/>
    </LinearLayout>
   <ListView android:id="@+id/lvwScores" 
       android:layout_width="fill_parent" android:layout_height="wrap_content"
       android:layout_centerHorizontal="true" android:layout_weight="1"/>
    <Button android:id="@+id/btnOK"
     android:layout_height="wrap_content" android:layout_width="wrap_content" 
     android:text="OK" android:layout_centerHorizontal="true" 
     layout_alignParentBottom="true"/>

</LinearLayout>

我明白了:

enter image description here

3 个答案:

答案 0 :(得分:9)

以下是我在使用ListView或ScrollView的几个应用程序中所做的操作,其中底部还有一个固定按钮或按钮LinearLayout。 “魔术”是在ListView中设置android:layout_weight="1"

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content">
    <ListView
        android:id="@+id/android:list"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:fastScrollEnabled="true" />
    <TextView
        android:id="@+id/android:empty"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="No Quotes!" />
    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:text="My Button" />
</LinearLayout>

答案 1 :(得分:4)

您应该将按钮放在列表前面,然后使用list元素上的layout_above属性将其放在按钮上方。同时将layout_alignParentBottom="true"添加到您的按钮。

像这样:

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

<LinearLayout 
  android:id="@+id/lloPlayerNames" xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent" android:layout_height="wrap_content" 
  android:orientation="horizontal">
  <TextView
    android:id="@+id/tvwPlayer1Name" android:layout_weight="1" android:gravity="right"
    android:layout_width="fill_parent" android:layout_height="wrap_content"/>
  <TextView
    android:id="@+id/tvwPlayer2Name" android:layout_weight="1" android:gravity="right"
    android:layout_width="fill_parent" android:layout_height="wrap_content"/>
  <TextView     
    android:id="@+id/tvwPlayer3Name" android:layout_weight="1" android:gravity="right"
    android:layout_width="fill_parent" android:layout_height="wrap_content"/>
  <TextView     
    android:id="@+id/tvwPlayer4Name" android:layout_weight="1" android:gravity="right"
    android:layout_width="fill_parent" android:layout_height="wrap_content"
    android:layout_margin="2dp"/>
</LinearLayout>

<Button android:id="@+id/btnOK"
  android:layout_height="wrap_content" android:layout_width="wrap_content" 
  android:layout_below="@id/lvwScores" android:layout_weight="1"
  android:text="OK" android:layout_centerHorizontal="true" 

  android:layout_alignParentBottom="true" 

   />

<ListView 
   android:id="@+id/lvwScores" 
   android:layout_below="@id/lloPlayerNames"

   android:layout_above="@id/btnOK"

   android:layout_width="fill_parent" android:layout_height="wrap_content"
   android:layout_centerHorizontal="true" />

答案 2 :(得分:1)

尝试向主xml中的android:below="@id/lvwScores"添加属性Button,这会将Button置于ListView之下。

有关RelativeLayout的更多信息,请参阅this tutorial