我正在尝试创建一个包含工具栏和标签的活动。
我在每个标签中都有一个列表视图,我希望当我向下或向上滚动时,工具栏会折叠或展开。我希望工具栏将被隐藏或显示,但是将始终显示的选项卡。
我想要这样的事情:
我试过在互联网上寻找并发现这个库: https://github.com/ksoichiro/Android-ObservableScrollView
问题是我在我的应用程序中没有成功使用它。
这是我的活动布局:
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto" android:id="@+id/main_content"
android:layout_width="match_parent" android:layout_height="match_parent"
android:fitsSystemWindows="true" tools:context="subtitlesinc.subtitlegetter.TabbedActivity">
<android.support.design.widget.AppBarLayout android:id="@+id/appbar"
android:layout_width="match_parent" android:layout_height="wrap_content"
android:paddingTop="@dimen/appbar_padding_top"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:layout_scrollFlags="scroll|enterAlways"/>
<android.support.design.widget.TabLayout android:id="@+id/tabs"
android:layout_width="match_parent" android:layout_height="wrap_content" />
</android.support.design.widget.AppBarLayout>
<android.support.v4.view.ViewPager android:id="@+id/container"
android:layout_width="match_parent" android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
<android.support.design.widget.FloatingActionButton android:id="@+id/fab"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:layout_gravity="end|bottom" android:layout_margin="@dimen/fab_margin"
android:src="@android:drawable/ic_dialog_email" />
我不确定我需要CoordinatorLayout - 我需要更换吗?
这是我想要的片段代码,它将折叠并展开工具栏:
public class ListViewFragment extends Fragment {
private View mHeaderView;
private View mToolbarView;
private ObservableRecyclerView mRecyclerView;
private int mBaseTranslationY;
@Nullable
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.content_main, container, false);
ListView listView = (ListView ) rootView.findViewById(R.id.moviesList);
MoviesArrayAdapter adapter = MoviesArrayAdapter.getInstance(TabbedActivity.getMainActivity(), R.layout.movie_layout, FileHandler.getInstance().getMoviesPaths());
ListViewListener.initializeListener(TabbedActivity.getMainActivity());
listView.setAdapter(adapter);
listView.setOnItemClickListener(new ListViewListener());
return (rootView);
}
}
有人可以帮我弄清楚我需要做什么吗?
答案 0 :(得分:0)
您无需包含第三方库即可实现此目的。 CoordinatorLayout和AppBarLayout支持此行为。
Design Support Library示例项目Cheesesquare实现了这种模式。您可以在此处查看相关的XML文件:https://github.com/chrisbanes/cheesesquare/blob/master/app/src/main/res/layout/include_list_viewpager.xml
我认为您只需要使用ViewPager
替换示例布局文件中的RecyclerView
即可使其正常工作。请务必在layout_behavior
上设置RecyclerView
(已在示例XML中)。