2

我有一个垂直的 LinearLayout,它有一个列表视图,底部有一个 ImageView,顶部有一个,列表视图填满了留下的空间。

它看起来像这样:

<LinearLayout layout_height="match_parent" layout_width="@dimen/width"
    orientation="vertical"> 
    <ImageView layout_height="@dimen/width" layout_width="@dimen/width" id="@+id/top">

     <ListView  android:layout_height="0px"
        android:background="#00ffff"
        android:layout_width="@dimen/width"
        android:layout_weight="1" />

     <ImageView layout_height="@dimen/width" layout_width="@dimen/width" id="@+id/bottom" layout_gravity="bottom|center_horizontal">

每当我看到列表视图时,它都可以正常工作。

但是,每当我将 ListView 设置为可见性消失时,“底部”ImageView 就会弹出到顶部图像视图的下方。

我的问题是为什么底部 ImageView 不停留在底部,尽管我说'android:layout_gravity="bottom|center_horizo​​ntal"' 我查看了hierarchyViewer,父级的高度确实与屏幕的高度匹配。所以底部图像视图应该尊重 android:layout_gravity="bottom|center_horizo​​ntal" 并保持在底部,对吗?

4

2 回答 2

3

作为我评论的替代方案,您可以将您的替换LinearLayoutRelativeLayout. Agarwal 已经提出了这个建议,但是他的代码有点混乱,在撰写本文时,就您希望它执行的操作而言,它并不正确。

试试下面的代码。当您将 设置为ListViewgone,顶部和底部图像将保持与设置时相同的位置visible。请注意,我替换了@dimens/width引用,因此您可能希望将它们放回原处。

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

    <ImageView android:id="@+id/top" android:layout_width="fill_parent"
        android:layout_height="wrap_content" />

    <ListView android:layout_width="fill_parent"
        android:layout_height="fill_parent" android:layout_above="@+id/bottom"
        android:layout_below="@+id/top" android:background="#00ffff" />

    <ImageView android:id="@+id/bottom" android:layout_width="fill_parent"
        android:layout_height="wrap_content" android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true" />

</RelativeLayout>
于 2012-04-21T03:31:32.107 回答
0

最好的解决方案是为此使用 ralaticelayout::::

<?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"
    android:background="#0000FF">

 <ImageView android:layout_height="wrap_content" android:layout_width="fill_parent" android:id="@+id/top" />
<ImageView android:layout_height="wrap_content" android:layout_width="fill_parent" android:id="@+id/bottom" android:layout_alignParentBottom="true"/>
     <ListView  android:layout_height="fill_parent"
        android:background="#00ffff"
        android:layout_width="fill_parent"
        android:layout_below:@id/top android:layout_above:@id/bottom />


</RelativeLayout>
于 2012-04-21T02:22:28.980 回答