0

我正在使用这个库来实现对 listView 的请求: 链接到项目

结果看起来相当不错,但我面临一个问题。如果我向下拖动列表视图以重新加载它,则会出现箭头并且一切正常。但它涵盖了所有其他视图。因此,在重新加载期间,我的其他视图消失并在刷新完成后显示。这看起来很丑陋。有人给我提示如何避免这种情况。

这是我的布局:

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

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="#ffffff"
    android:orientation="horizontal"
    android:paddingBottom="2dp"
    android:paddingLeft="10dp"
    android:paddingTop="2dp" >

    <TextView
        android:id="@+id/tv_sorting"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/newest_title"
        android:textColor="#000000"
        android:textSize="14dp" />

    <TextView
        android:id="@+id/tv_language"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text=""
        android:textColor="#000000"
        android:textSize="14dp" />
</LinearLayout>

<TextView
    android:id="@+id/balken"
    android:layout_width="fill_parent"
    android:layout_height="3sp"
    android:background="@color/main_color" >
</TextView>



<eu.erikw.PullToRefreshListView
    android:id="@+id/pull_to_refresh_listview"
    android:layout_height="0dip"
    android:layout_width="fill_parent"
    android:layout_weight="2"
    android:cacheColorHint="#00000000"
    android:divider="@null"
    android:dividerHeight="0dp"
/> 
4

1 回答 1

0

我已经想出了如何解决它。我只是在 Listview 周围添加了一个 LinearLayout。

于 2012-09-22T17:22:35.433 回答