0

我有一个对话主题的活动。它的布局有 3 个部分


标题



身体(有列表视图)



确定按钮


这必须始终是我的布局结构。如果我使用以下布局 xml:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="10dip" >

<RelativeLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" >

    <ImageView
        android:id="@+id/iv_av_logo"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginBottom="4dip"
        android:layout_marginTop="2dip"
        android:paddingLeft="6dip"
        android:src="@drawable/tablet_ic_logo" />

    <RelativeLayout
        android:id="@+id/rl_av_found"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@id/iv_av_logo"
        android:layout_marginBottom="5dip"
        android:paddingLeft="16dip" >

        <TextView
            android:id="@+id/tv_av_found"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textColor="@color/orange"
            android:textSize="22dp"
            android:textStyle="bold" />

        <TextView
            android:id="@+id/tv_av_recommendation"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@id/tv_av_found"
            android:layout_marginBottom="8dip"
            android:textColor="@color/white"
            android:textSize="13dp"
            android:visibility="gone" />
    </RelativeLayout>

    <LinearLayout
        android:id="@+id/ll_av_body"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_below="@id/rl_av_found"
        android:background="@drawable/tablet_dialog_glow" >

        <ListView
            android:id="@+id/lv_av_threats_found"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:cacheColorHint="#00000000"
            android:divider="@drawable/tablet_dialog_separator" >
        </ListView>
    </LinearLayout>

    <RelativeLayout
        android:id="@+id/rl_button_bar"
        android:layout_width="wrap_content"
        android:layout_height="70dip"
        android:layout_below="@id/ll_av_body" >

        <Button
            android:id="@+id/btn_av_ok"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:onClick="onClick"
            android:text="@string/btn_ok" />

        <ImageView
            android:id="@+id/iv_separator"
            android:layout_width="match_parent"
            android:layout_height="1dip"
            android:layout_alignParentTop="true"
            android:background="@drawable/tablet_dialog_footer" />
    </RelativeLayout>
</RelativeLayout>

它给了我想要的东西。但是如果列表增加并且我说有 100 个项目,确定按钮就会消失。

如果我使用这种布局:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="10dip" >

<RelativeLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" >

    <ImageView
        android:id="@+id/iv_av_logo"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginBottom="4dip"
        android:layout_marginTop="2dip"
        android:paddingLeft="6dip"
        android:src="@drawable/tablet_ic_logo" />

    <RelativeLayout
        android:id="@+id/rl_av_found"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@id/iv_av_logo"
        android:layout_marginBottom="5dip"
        android:paddingLeft="16dip" >

        <TextView
            android:id="@+id/tv_av_found"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textColor="@color/orange"
            android:textSize="22dp"
            android:textStyle="bold" />

        <TextView
            android:id="@+id/tv_av_recommendation"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@id/tv_av_found"
            android:layout_marginBottom="8dip"
            android:textColor="@color/white"
            android:textSize="13dp"
            android:visibility="gone" />
    </RelativeLayout>

    <RelativeLayout
        android:id="@+id/rl_button_bar"
        android:layout_width="wrap_content"
        android:layout_height="70dip"
        android:layout_alignParentBottom="true" >

        <Button
            android:id="@+id/btn_av_ok"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:onClick="onClick"
            android:text="@string/btn_ok" />

        <ImageView
            android:id="@+id/iv_separator"
            android:layout_width="match_parent"
            android:layout_height="1dip"
            android:layout_alignParentTop="true"
            android:background="@drawable/tablet_dialog_footer" />
    </RelativeLayout>

    <LinearLayout
        android:id="@+id/ll_av_threats"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_above="@id/rl_button_bar"
        android:layout_below="@id/rl_av_found"
        android:background="@drawable/tablet_dialog_glow" >

        <ListView
            android:id="@+id/lv_av_found"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:cacheColorHint="#00000000"
            android:divider="@drawable/tablet_dialog_separator" >
        </ListView>
    </LinearLayout>
</RelativeLayout>

OK 按钮始终显示在屏幕底部,即使我在 ListView 中只有一项,布局的高度也会全屏显示。

我应该如何构造我的 xml,以便根据内容包装其高度,并且确定按钮始终可见,而与 ListView 中的项目数无关?

4

1 回答 1

0

默认情况下,您应该将参数设置为,Header - Align Top Body(ListView) - below header, Button - below body(ListView)

现在在运行时,您应该获取列表视图的高度以及它是否超出屏幕,如果超出,则将按钮的布局参数设置为 alignParentBottom 并将列表视图的布局参数设置为低于标题和高于按钮。使用反之亦然。

获取列表视图的高度。用这个

public int getTotalListViewHeight(ListView lv, BaseAdapter ba) {
        int listviewElementsheight = 0;
        for (int i = 0; i < ba.getCount(); i++) {
            View view = ba.getView(i, null, lv);
            view.measure(MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED),
                                MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED));
            listviewElementsheight += view.getMeasuredHeight();
            // for Width use view.getMeasuredWidth()
        }
        return listviewElementsheight;
    }

这里的适配器是 listviews 适配器。

也将检查这一点,将按钮高度添加到总高度。

于 2012-10-30T15:15:05.737 回答