Android -- Toolbar跟随ListView滑动隐藏和显现
布局 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent"> <ListView android:id="@+id/main_list_view" android:layout_width="fill_parent" android:layout_height="fill_parent" /> <android.support.v7.widget.Toolbar android:id="@+id/main_bar" android:layout_width="fill_parent" android:layout_height="wrap_content" android:background="@color/std_colo...
