如何从安卓appcompat v7 21库实现DrawerArrowToggle



所以现在Android 5.0发布了,我想知道如何实现动画动作栏图标。

这里的这个库对我来说实现得很好,但既然appcompat v7库有它,怎么实现呢?

库在主题.xml 中引用了它

 <item name="drawerArrowStyle">@style/Widget.AppCompat.DrawerArrowToggle</item>

在这种风格下

 <style name="Base.V7.Theme.AppCompat" parent="Platform.AppCompat">

更新

我使用v7抽屉开关实现了这一点。但是我不能设计它。请帮助

我在v7 styles_base.xml 中找到了它的样式

<style name="Base.Widget.AppCompat.DrawerArrowToggle" parent="">
    <item name="color">?android:attr/textColorSecondary</item>
    <item name="thickness">2dp</item>
    <item name="barSize">18dp</item>
    <item name="gapBetweenBars">3dp</item>
    <item name="topBottomBarArrowSize">11.31dp</item>
    <item name="middleBarArrowSize">16dp</item>
    <item name="drawableSize">24dp</item>
    <item name="spinBars">true</item>
</style>

我把这个添加到我的风格中,但没有成功。还添加到我的attr.xml

<declare-styleable name="DrawerArrowToggle">
    <!-- The drawing color for the bars -->
    <attr name="color" format="color"/>
    <!-- Whether bars should rotate or not during transition -->
    <attr name="spinBars" format="boolean"/>
    <!-- The total size of the drawable -->
    <attr name="drawableSize" format="dimension"/>
    <!-- The max gap between the bars when they are parallel to each other -->
    <attr name="gapBetweenBars" format="dimension"/>
    <!-- The size of the top and bottom bars when they merge to the middle bar to form an arrow -->
    <attr name="topBottomBarArrowSize" format="dimension"/>
    <!-- The size of the middle bar when top and bottom bars merge into middle bar to form an arrow -->
    <attr name="middleBarArrowSize" format="dimension"/>
    <!-- The size of the bars when they are parallel to each other -->
    <attr name="barSize" format="dimension"/>
    <!-- The thickness (stroke size) for the bar paint -->
    <attr name="thickness" format="dimension"/>
</declare-styleable>

但是崩溃并说颜色类型错误时,这样做。我缺少什么?

首先,您应该知道android.support.v4.app.ActionBarDrawerToggle已被弃用。

您必须将其替换为android.support.v7.app.ActionBarDrawerToggle

这是我的例子,我使用新的Toolbar来代替ActionBar

MainActivity.java

public class MainActivity extends ActionBarActivity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    Toolbar mToolbar = (Toolbar) findViewById(R.id.toolbar);
    setSupportActionBar(mToolbar);
    DrawerLayout mDrawerLayout = (DrawerLayout) findViewById(R.id.drawer_layout);
    ActionBarDrawerToggle mDrawerToggle = new ActionBarDrawerToggle(
        this,  mDrawerLayout, mToolbar,
        R.string.navigation_drawer_open, R.string.navigation_drawer_close
    );
    mDrawerLayout.setDrawerListener(mDrawerToggle);
    getSupportActionBar().setDisplayHomeAsUpEnabled(true);
    getSupportActionBar().setHomeButtonEnabled(true);
    mDrawerToggle.syncState();
}

styles.xml

<style name="AppTheme" parent="Theme.AppCompat.Light">
    <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>

您可以在AndroidDocument#DrawerArrowToggle_spinBars 上阅读文档

该属性是实现菜单到箭头动画的关键。

public static int DrawerArrowToggle_spinBars

过渡期间是否应旋转条形图
必须是布尔值,可以是"true"或"false"

因此,您设置为:<item name="spinBars">true</item>

然后可以呈现动画。

希望这能帮助到你。

如果您正在按照创建导航抽屉培训中的建议使用支持库提供的DrawerLayout,则可以使用新添加的android.Support

抽屉关闭时显示汉堡图标,抽屉打开时显示箭头。当抽屉打开时,它在这两种状态之间产生动画。

虽然还没有更新训练以将deprecation/new类考虑在内,但您应该能够使用几乎完全相同的代码——实现它的唯一区别是构造函数。

我创建了一个具有类似功能的小型应用程序

主要活动

public class MyActivity extends ActionBarActivity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_my);
        DrawerLayout drawerLayout = (DrawerLayout) findViewById(R.id.drawer);
        android.support.v7.widget.Toolbar toolbar = (android.support.v7.widget.Toolbar) findViewById(R.id.toolbar);
        ActionBarDrawerToggle actionBarDrawerToggle = new ActionBarDrawerToggle(
                this,
                drawerLayout,
                toolbar,
                R.string.open,
                R.string.close
        )
        {
            public void onDrawerClosed(View view)
            {
                super.onDrawerClosed(view);
                invalidateOptionsMenu();
                syncState();
            }
            public void onDrawerOpened(View drawerView)
            {
                super.onDrawerOpened(drawerView);
                invalidateOptionsMenu();
                syncState();
            }
        };
        drawerLayout.setDrawerListener(actionBarDrawerToggle);
        //Set the custom toolbar
        if (toolbar != null){
            setSupportActionBar(toolbar);
        }
        getSupportActionBar().setDisplayHomeAsUpEnabled(true);
        actionBarDrawerToggle.syncState();
    }
}

我的活动的XML

<android.support.v4.widget.DrawerLayout 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"
    tools:context=".MyActivity"
    android:id="@+id/drawer"
    >
    <!-- The main content view -->
    <FrameLayout
        android:id="@+id/content_frame"
        android:layout_width="match_parent"
        android:layout_height="match_parent" >
        <include layout="@layout/toolbar_custom"/>
    </FrameLayout>
    <!-- The navigation drawer -->
    <ListView
        android:layout_marginTop="?attr/actionBarSize"
        android:id="@+id/left_drawer"
        android:layout_width="240dp"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:choiceMode="singleChoice"
        android:divider="@android:color/transparent"
        android:dividerHeight="0dp"
        android:background="#457C50"/>

</android.support.v4.widget.DrawerLayout>

我的自定义工具栏XML

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:id="@+id/toolbar"
    android:background="?attr/colorPrimaryDark">
    <TextView android:text="U titel"
        android:textAppearance="@android:style/TextAppearance.Theme"
        android:textColor="@android:color/white"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        />
</android.support.v7.widget.Toolbar>

我的主题样式

<resources>
    <style name="AppTheme" parent="Base.Theme.AppCompat"/>
    <style name="AppTheme.Base" parent="Theme.AppCompat">
        <item name="colorPrimary">@color/primary</item>
        <item name="colorPrimaryDark">@color/primaryDarker</item>
        <item name="android:windowNoTitle">true</item>
        <item name="windowActionBar">false</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>
    <color name="primary">#457C50</color>
    <color name="primaryDarker">#580C0C</color>
</resources>

我的价值风格-v21

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <style name="AppTheme" parent="AppTheme.Base">
        <item name="android:windowContentTransitions">true</item>
        <item name="android:windowAllowEnterTransitionOverlap">true</item>
        <item name="android:windowAllowReturnTransitionOverlap">true</item>
        <item name="android:windowSharedElementEnterTransition">@android:transition/move</item>
        <item name="android:windowSharedElementExitTransition">@android:transition/move</item>
    </style>
</resources>

要回答问题的更新部分:要设置抽屉图标/箭头的样式,您有两个选项:

设置箭头本身的样式

要做到这一点,请覆盖主题中的drawerArrowStyle,如下所示:

<style name="AppBaseTheme" parent="Theme.AppCompat.Light">
    <item name="drawerArrowStyle">@style/MyTheme.DrawerArrowToggle</item>
</style>
<style name="MyTheme.DrawerArrowToggle" parent="Widget.AppCompat.DrawerArrowToggle">
    <item name="color">@android:color/holo_purple</item>
    <!-- ^ this will make the icon purple -->
</style>

这可能不是您想要的,因为ActionBar本身应该具有与箭头一致的样式,所以,很可能,您想要选项二:

设置ActionBar/Toolbar的主题

用您自己的主题(可能应该从ThemeOverlay.Material.ActionBar/ThemeOverlay.AppCompat.ActionBar派生)覆盖全局应用程序主题的android:actionBarTheme(对于appcompat为actionBarTheme)属性,如下所示:

<style name="AppBaseTheme" parent="Theme.AppCompat.Light">
    <item name="actionBarTheme">@style/MyTheme.ActionBar</item>
</style>
<style name="MyTheme.ActionBar" parent="ThemeOverlay.AppCompat.ActionBar">
    <item name="android:textColorPrimary">@android:color/white</item>
    <!-- ^ this will make text and arrow white -->
    <!-- you can also override drawerArrowStyle here -->
</style>

这里需要注意的一点是,当使用带有Toolbar而不是库存ActionBar实现的自定义布局时(例如,如果您使用DrawerLayout-NavigationView-Toolbar组合来实现材质样式的抽屉效果,在半透明状态栏下可见),actionBarTheme属性显然不会自动拾取(因为它是由默认ActionBarAppCompatActivity处理的),所以对于您的自定义Toolbar,不要忘记手动应用您的主题:

<!--inside your custom layout with DrawerLayout
and NavigationView or whatever -->
<android.support.v7.widget.Toolbar
        ...
        app:theme="?actionBarTheme">

--这将解析为AppCompat的默认ThemeOverlay.AppCompat.ActionBar,或者如果在派生主题中设置属性,则解析为您的覆盖。

PS关于drawerArrowStyle覆盖和spinBars属性的一点评论——许多来源建议将其设置为true以获得抽屉/箭头动画。问题是,spinBars在AppCompat中默认为true(检查Base.Widget.AppCompat.DrawerArrowToggle.Common样式),您根本不必覆盖actionBarTheme即可使动画工作。即使覆盖动画并将属性设置为false,也会得到动画,这只是一个不同的、较少旋转的动画。这里重要的是使用ActionBarDrawerToggle,这就是吸引花式动画绘图的原因。

我想稍微更正一下上面的代码

    public class MainActivity extends ActionBarActivity {
        @Override
        protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        Toolbar mToolbar = (Toolbar) findViewById(R.id.toolbar);
        DrawerLayout mDrawerLayout = (DrawerLayout) findViewById(R.id.drawer_layout);
        ActionBarDrawerToggle mDrawerToggle = new ActionBarDrawerToggle(
            this,  mDrawerLayout, mToolbar,
            R.string.navigation_drawer_open, R.string.navigation_drawer_close
        );
        mDrawerLayout.setDrawerListener(mDrawerToggle);
        getSupportActionBar().setDisplayHomeAsUpEnabled(true);
        getSupportActionBar().setHomeButtonEnabled(true);
    }

所有其他的东西都会保持不变。。。

对于那些有问题的Drawerlayout覆盖工具栏

android:layout_marginTop="?attr/actionBarSize"添加到抽屉内容的根布局

相关内容

  • 没有找到相关文章

最新更新