0

我的问题应该在这里回答:固定页脚不显示最底部的列表项

但这对我不起作用。

我想要一个底部有固定页脚的列表视图。此刻,列表视图与窗口一样大,这使得页脚重叠。XML:

<?xml version="1.0" encoding="utf-8" ?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/root"
android:layout_width="fill_parent" 
android:layout_height="fill_parent"
android:orientation="vertical">

  <!-- <ImageView 
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:src="@drawable/baby_blue_solid" android:scaleType="centerCrop" />-->
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/footer_cloud"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:gravity="center_vertical"
    android:layout_alignParentBottom="true"
    >

    <ImageView android:id="@+id/add_icon"
        android:layout_centerInParent="true"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
                android:src="@drawable/ic_menu_add"
    />

    <ImageView android:id="@+id/cloudBG"
        android:layout_centerInParent="true"
        android:layout_width="230dp"
        android:layout_height="60dp"
        android:background="@drawable/cl"

    />

    <ImageView 
        android:id="@+id/footer_divider"
        android:layout_width="fill_parent"
        android:layout_height="2dp"
        android:background="@android:drawable/divider_horizontal_bright"
        android:layout_above="@id/cloudBG"
    />


    </RelativeLayout>

<com.commonsware.cwac.tlv.TouchListView
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tlv="http://schemas.android.com/apk/res/com.commonsware.cwac.tlv.demo"

    android:id="@android:id/list"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_below="@id/root"
    android_layout_above="@id/footer_cloud"
    android:drawSelectorOnTop="false"
    android:listSelector="@android:color/transparent"

    tlv:normal_height="64dip"
    tlv:grabber="@+id/icon"
    tlv:remove_mode="slideLeft"

/>

</RelativeLayout>

尽管我使用的是 Commonsware 的 touchlistview,但我认为这不应该是它不起作用的原因。任何人都可以发现错误吗?

另外,我看不到我实现的分隔线。当我使用背景或 src 属性时,都看不到任何效果。

4

1 回答 1

0

首先,在诊断问题时尽可能使用更简单的小部件。如果你看到奇怪的东西TouchListView,试试普通的ListView

其次,您的布局规则TouchListView很奇怪。您正在尝试使小部件位于其自己的容器下方。而且,您应该使用0dp高度。

试试那些东西。如果问题仍然存在并且是 独有的TouchListView,我将需要一个示例项目来重现错误以进一步调查。如果问题出现在 regularListView中,而我在这里写的内容没有帮助,下一步是使用 Hierarchy View 来尝试诊断布局有什么问题。

于 2011-09-12T00:58:12.987 回答