我正在尝试使用三个 TableLayout 为浮动按钮和滚动视图实现 SwipeRefreshLayout。我想一直在屏幕上显示浮动按钮(就像它在带有 Material Design 的 Gmail 应用程序上一样)。不幸的是,滑动刷新阻止了向上滚动。如何通知滑动刷新我的滚动视图要向上滚动?我应该改变布局结构吗?
我正在使用库https://github.com/futuresimple/android-floating-action-button
这是我的布局:
<android.support.v4.widget.SwipeRefreshLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:fab="http://schemas.android.com/apk/res-auto"
android:id="@+id/swipe_container"
android:layout_width="match_parent"
android:layout_height="match_parent">
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ScrollView
android:id="@+id/scroll_recent"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TableLayout
android:id="@+id/table_recent_claims"
android:layout_width="match_parent"
android:layout_height="wrap_content"></TableLayout>
<TableLayout
android:id="@+id/table_recent_rapidscans"
android:layout_width="match_parent"
android:layout_height="wrap_content"></TableLayout>
<TableLayout
android:id="@+id/table_recent_journeys"
android:layout_width="match_parent"
android:layout_height="wrap_content"></TableLayout>
</LinearLayout>
</ScrollView>
<com.getbase.floatingactionbutton.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|right"
fab:fab_icon="@drawable/fab_plus24" />
</FrameLayout>
</android.support.v4.widget.SwipeRefreshLayout>