Android为ListView设置FAB行为

时间:2015-11-20 16:04:53

标签: java android xml listview floating-action-button

我目前正在开发一个有ListViewFAB的应用程序。现在我要做的是在开头隐藏FAB,然后在我的ListView向下滚动后显示它。我的content_main.xml用于编码ListView,activity_main.xml用于我的FAB。

activity_main.xml中

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true"
    tools:context=".MainActivity">

    <android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:theme="@style/AppTheme.AppBarOverlay">

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary"
            app:popupTheme="@style/AppTheme.PopupOverlay" />

    </android.support.design.widget.AppBarLayout>

    <include layout="@layout/content_main" />

    <android.support.design.widget.FloatingActionButton
        android:id="@+id/fab"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom|end"
        android:layout_margin="@dimen/fab_margin"
        android:src="@drawable/ic_up" />

</android.support.design.widget.CoordinatorLayout>

content_main.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    tools:context=".MainActivity"
    tools:showIn="@layout/activity_main">
          <ListView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/words_list_view"
            android:divider="#00000000"
            android:listSelector="@drawable/list_selector"
            android:layout_weight="1" />
</RelativeLayout>

并且在我的Main_Activity.java我有onScrollListener我在哪里库存,认为这是我可以处理FAB行为的地方。

listView.setOnScrollListener(new AbsListView.OnScrollListener() {
            @Override
            public void onScrollStateChanged(AbsListView view, int scrollState) {

            }
            int preLast;
            @Override
            public void onScroll(AbsListView view, int firstVisibleItem, int visibleItemCount, int totalItemCount) {
                final int lastItem = firstVisibleItem + visibleItemCount;
                if (lastItem > 20) {
                    if (preLast != lastItem) { 
                    // SHow FAB Here
                    }
                } else {
                    // Hide FAB Here
                }
            }

        });

我希望你们能理解我的问题。非常感谢你!任何帮助,将不胜感激!

0 个答案:

没有答案