我有兩個textviews和一個浮動的操作按鈕和一個ListView。 目前我能夠使用swiperefreshlayout的列表視圖,但我想它的時候我刷卡從活動的自上而下,列表視圖應後臺更新使用全視圖即。 任何人都可以幫助我。 這是我當前的xml文件。Android的刷卡刷新佈局問題
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView android:id="@+id/view_tickets_activity_text_view_note"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp" />
<TextView android:id="@+id/view_tickets_activity_text_view_customer_name"
android:layout_width="220dp"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/view_tickets_activity_text_view_note"
android:layout_below="@+id/view_tickets_activity_text_view_note"
android:layout_marginTop="10dp" />
<android.support.design.widget.FloatingActionButton android:id="@+id/view_tickets_activity_floating_btn_add_ticket"
android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_alignParentRight="true" android:layout_alignTop="@+id/view_tickets_activity_text_view_customer_name" />
<android.support.v4.widget.SwipeRefreshLayout
android:id="@+id/swipe"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/view_tickets_activity_floating_btn_add_ticket"
android:layout_marginTop="15dp">
<ListView
android:id="@+id/view_tickets_activity_list_view_tickets"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</android.support.v4.widget.SwipeRefreshLayout>
</RelativeLayout>
我想你的解決方案,但是當我們滑下出現圓形的東西是不可見的,所以你有什麼想法爲什麼是這樣? –