我设计了一个布局,其中我有listview,它将显示200多个列表名称,在底部我有四个按钮。
问题是列表视图的最后两个元素隐藏在该页脚后面。我无法搞清楚。 任何帮助表示赞赏
<?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"
android:background="#ffffff"
android:orientation="vertical"
android:keepScreenOn="true"
>
<include
android:id="@+id/store_screen_action_bar"
layout="@layout/action_bar" />
<ListView
android:id="@+id/store_screen_lists"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/store_screen_action_bar"
android:layout_marginLeft="20dip"
android:layout_marginRight="20dip"
android:layout_marginTop="20dip"
android:cacheColorHint="#00000000"
android:divider="@drawable/divider_line"
android:fastScrollEnabled="false"
android:headerDividersEnabled="false"
android:smoothScrollbar="true"
android:listSelector="@android:color/transparent"
/>
<TextView
android:id="@android:id/empty"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:textSize="15sp"
android:gravity="center_horizontal|center_vertical"
/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#c8d5e1"
android:gravity="center_horizontal|bottom"
android:orientation="horizontal"
android:layout_alignParentBottom="true"
>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="5dip"
android:layout_marginTop="15dip"
android:orientation="vertical" >
<ImageButton
android:id="@+id/store_screen_anouncement"
android:layout_width="60dip"
android:layout_height="60dip"
android:layout_marginLeft="10dip"
android:layout_marginTop="5dip"
android:background="@drawable/round_corner"
android:paddingBottom="40dip"
android:paddingLeft="30dip"
android:paddingRight="20dip"
android:paddingTop="40dip"
android:src="@drawable/announcement" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="2dip"
android:gravity="center_horizontal"
android:text="@string/annoucement_text"
android:textColor="#306190"
android:textSize="12sp" />
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="5dip"
android:layout_marginTop="15dip"
android:orientation="vertical" >
<ImageButton
android:id="@+id/store_screen_group"
android:layout_width="60dip"
android:layout_height="60dip"
android:layout_marginLeft="3dip"
android:layout_marginRight="10dip"
android:layout_marginTop="5dip"
android:background="@drawable/round_corner"
android:padding="20dip"
android:src="@drawable/groups" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="2dip"
android:layout_marginLeft="10dip"
android:gravity="center_horizontal"
android:paddingLeft="5dip"
android:text="@string/groups_text"
android:textColor="#306190"
android:textSize="12sp" />
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="5dip"
android:layout_marginTop="15dip"
android:orientation="vertical" >
<ImageButton
android:id="@+id/store_screen_interupt_all"
android:layout_width="60dip"
android:layout_height="60dip"
android:layout_marginLeft="10dip"
android:layout_marginRight="10dip"
android:layout_marginTop="5dip"
android:background="@drawable/round_corner"
android:padding="10dip"
android:src="@drawable/interrupt" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="2dip"
android:layout_marginLeft="10dip"
android:gravity="center_horizontal"
android:text="@string/interrupt_text"
android:textColor="#306190"
android:textSize="12sp" />
</LinearLayout>
<FrameLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dip" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="5dip"
android:layout_marginTop="5dip"
android:orientation="vertical" >
<ImageButton
android:id="@+id/store_screen_ear_box"
android:layout_width="60dip"
android:layout_height="60dip"
android:layout_marginLeft="10dip"
android:layout_marginRight="10dip"
android:layout_marginTop="5dip"
android:background="@drawable/round_corner"
android:padding="60dip"
android:src="@drawable/earbox" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="2dip"
android:layout_marginLeft="10dip"
android:gravity="center_horizontal"
android:paddingLeft="10dip"
android:text="@string/earbox_text"
android:textColor="#306190"
android:textSize="12sp" />
</LinearLayout>
<TextView
android:id="@+id/play_announcement_no_text"
android:layout_width="25dip"
android:layout_height="25dip"
android:layout_gravity="left"
android:layout_marginRight="5dip"
android:background="@drawable/green_circle"
android:gravity="center"
android:visibility="gone"
android:textColor="@android:color/white" />
<TextView
android:id="@+id/play_message_no_text"
android:layout_width="25dip"
android:layout_height="25dip"
android:layout_gravity="right"
android:layout_marginBottom="20dip"
android:background="@drawable/red_circle"
android:gravity="center"
android:visibility="gone"
android:textColor="@android:color/white" />
</FrameLayout>
</LinearLayout>
</RelativeLayout>
答案 0 :(得分:1)
将这些属性添加到ListView
:
android:layout_below="@+id/store_screen_action_bar"
android:layout_above="@+id/footer"
并设置id
页脚的LinearLayout
:
<LinearLayout
android:id="@+id/footer"
答案 1 :(得分:0)
使用android:layout_below="@id/list
作为页脚