软件编程
位置:首页>> 软件编程>> Android编程>> Android编程实现ActionBar的home图标动画切换效果

Android编程实现ActionBar的home图标动画切换效果

作者:books1958  发布时间:2021-11-21 11:34:11 

标签:Android,ActionBar,home,动画

本文实例讲述了Android编程实现ActionBar的home图标动画切换效果。分享给大家供大家参考,具体如下:

Material Design中一个重要特性是侧滑菜单 展开/关闭 时,ActionBar上的home图标也动画切换。本例要实现的正是这个效果,如图所示:

Android编程实现ActionBar的home图标动画切换效果

实现这个效果仅需几步:

1.首先,该页面的布局是一个DrawerLayout,代码如下:


<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:app="http://schemas.android.com/apk/res-auto"
 android:id="@+id/main_drawer"
 android:layout_width="match_parent"
 android:layout_height="match_parent">
 <!-- 内容布局-->
 <FrameLayout
   android:id="@+id/main_content"
   android:layout_width="match_parent"
   android:layout_height="match_parent" />
 <!-- 侧滑菜单-->
 <android.support.design.widget.NavigationView
   android:id="@+id/main_navigation"
   android:layout_width="wrap_content"
   android:layout_height="match_parent"
   android:layout_gravity="start"
   app:headerLayout="@layout/navigation_header"
   app:menu="@menu/menu_drawer" />
</android.support.v4.widget.DrawerLayout>

2.为程序指定Actionbar箭头按钮样式,即如下代码中的DrawerArrowStyle


<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
   <!-- Customize your theme here. -->
   <item name="colorPrimary">@color/colorPrimary</item>
   <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
   <item name="colorAccent">@color/colorAccent</item>
   <item name="drawerArrowStyle">@style/DrawerArrowStyle</item>
</style>
<style name="DrawerArrowStyle" parent="Widget.AppCompat.DrawerArrowToggle">
   <item name="spinBars">true</item>
   <item name="color">@android:color/white</item>
</style>

然后,将AppTheme应用到manifest中application标签下。

3. Activity继承自AppCompatActivity, 然后在onCreate方法中添加代码(使用Toolbar与此类似):


ActionBar mActionBar = getSupportActionBar();
if (mActionBar != null) {
 mActionBar.setDisplayHomeAsUpEnabled(true);
 mActionBar.setHomeButtonEnabled(true);
}
//实现左侧home图标“菜单”样式与“返回”样式的动画切换(需要在xml中配置相关样式)
drawerToggle = new ActionBarDrawerToggle(this, drawerLayout, R.string.drawer_open, R.string.drawer_close);
drawerLayout.setDrawerListener(drawerToggle);

4.在Activity的onPostCreate中添加如下代码,并且在其它可能需要刷新的地方调用drawerToggle.syncState() 方法。


@Override
protected void onPostCreate(Bundle savedInstanceState) {
   super.onPostCreate(savedInstanceState);
   drawerToggle.syncState();
}

希望本文所述对大家Android程序设计有所帮助。

0
投稿

猜你喜欢

手机版 软件编程 asp之家 www.aspxhome.com