Pull-To-Request涵盖其他视图

时间:2012-09-22 16:50:15

标签: android

我正在使用这个库来实现对listView的pull请求: Link to project

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

这是我的布局:

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

1 个答案:

答案 0 :(得分:0)

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