如何在 fragment 和 activity 中创建折叠工具栏
how to create collapsing toolbar in fragment and activity
我正在尝试在我的项目中为 fragment 和 activity 创建折叠工具栏,
但是折叠工具栏不起作用 well.Please 帮助我找到解决方案,因为我是 android 的新手。
提前谢谢你。
首先你需要创建一个 AppBar 布局作为主父级。在此添加一个 CollapsingToolbarLayout。在 CollapsingToolbarLayout 中,在工具栏中添加您想要的任何内容,最后添加到工具栏中。
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/collapsing_toolbar_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:contentScrim="?attr/colorPrimary"
app:layout_scrollFlags="scroll|enterAlways">
<!--This can be anything, here I've added a view pager inside collapsing toolbar-->
<android.support.v4.view.ViewPager
android:id="@+id/pager_introduction"
android:layout_width="match_parent"
android:layout_height="192dp"
android:fitsSystemWindows="true"
app:layout_collapseMode="parallax"
tools:listitem="@layout/pager_item" />
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:layout_collapseMode="pin" />
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
现在 android 部分实例化工具栏并设置它。
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
在我的例子中,我添加了一个 viewpager,必须创建一个单独的适配器来填充该 viewpager。
我正在尝试在我的项目中为 fragment 和 activity 创建折叠工具栏, 但是折叠工具栏不起作用 well.Please 帮助我找到解决方案,因为我是 android 的新手。 提前谢谢你。
首先你需要创建一个 AppBar 布局作为主父级。在此添加一个 CollapsingToolbarLayout。在 CollapsingToolbarLayout 中,在工具栏中添加您想要的任何内容,最后添加到工具栏中。
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/collapsing_toolbar_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:contentScrim="?attr/colorPrimary"
app:layout_scrollFlags="scroll|enterAlways">
<!--This can be anything, here I've added a view pager inside collapsing toolbar-->
<android.support.v4.view.ViewPager
android:id="@+id/pager_introduction"
android:layout_width="match_parent"
android:layout_height="192dp"
android:fitsSystemWindows="true"
app:layout_collapseMode="parallax"
tools:listitem="@layout/pager_item" />
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:layout_collapseMode="pin" />
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
现在 android 部分实例化工具栏并设置它。
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
在我的例子中,我添加了一个 viewpager,必须创建一个单独的适配器来填充该 viewpager。