现在Android 5.0已经发布了,我想知道如何实现动画操作栏图标。
这个库here对我来说很好,但是既然appcompat v7库有它,它怎么能实现呢?
库在themes.xml中引用它
<item name="drawerArrowStyle">@style/Widget.AppCompat.DrawerArrowToggle</item>
在这种风格下
<style name="Base.V7.Theme.AppCompat" parent="Platform.AppCompat">
更新
我使用v7 DrawerToggle实现了这个功能。但是我无法设计它。请帮忙
我在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>
但崩溃并且在执行此操作时会说颜色类型错误。我错过了什么?
答案 0 :(得分:240)
首先,您应该知道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
过渡期间栏是否应该旋转
必须是布尔值,&#34; true&#34;或&#34; false&#34;。
所以,你设置了这个:<item name="spinBars">true</item>
。
然后可以呈现动画。
希望这可以帮到你。
答案 1 :(得分:24)
如果您使用DrawerLayout中建议的Creating a navigation drawer training提供的支持库,则可以使用新添加的android.support.v7.app.ActionBarDrawerToggle(注意:与现已弃用的android.support.v4.app.ActionBarDrawerToggle不同):
显示抽屉关闭时的汉堡图标和抽屉打开时的箭头。当抽屉打开时,它会在这两种状态之间激活。
虽然培训尚未更新以考虑弃用/新类,但您应该能够使用几乎完全相同的代码 - 实现它的唯一区别是构造函数。
答案 2 :(得分:17)
我创建了一个具有类似功能的小应用程序
MainActivity
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>
My Styles in values-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>
答案 3 :(得分:9)
要回答问题的更新部分:要设置抽屉图标/箭头的样式,您有两种选择:
要执行此操作,请覆盖主题中的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本身应该与箭头具有一致的样式,因此,很可能,您需要选项二:
使用您自己的主题(您可能应该从android:actionBarTheme
派生)覆盖全局应用程序主题的actionBarTheme
(ThemeOverlay.Material.ActionBar/ThemeOverlay.AppCompat.ActionBar
for appcompat)属性,如下所示:
<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
- {{ 1}}组合实现材料风格的抽屉效果,它在半透明状态栏下可见,但Toolbar
属性显然不会被自动拾取(因为它意味着需要照顾actionBarTheme
用于默认AppCompatActivity
),因此对于您的自定义ActionBar
,请勿忘记手动应用主题:
Toolbar
- 如果您在派生主题中设置了属性,这将解析为AppCompat的默认<!--inside your custom layout with DrawerLayout
and NavigationView or whatever -->
<android.support.v7.widget.Toolbar
...
app:theme="?actionBarTheme">
或您的覆盖。
PS 关于ThemeOverlay.AppCompat.ActionBar
覆盖和drawerArrowStyle
属性的一点评论 - 许多来源建议应将其设置为spinBars
以获取抽屉/箭头动画。事情是,true
默认情况下spinBars
在AppCompat中(请查看true
样式),您不必覆盖{{1完全让动画工作。即使您覆盖它并将属性设置为Base.Widget.AppCompat.DrawerArrowToggle.Common
,您也可以获得动画,它只是一个不同的,不那么圆润的动画。这里最重要的是使用actionBarTheme
,这是花哨的动画可绘制的内容。
答案 4 :(得分:2)
我想纠正上面的代码
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"
添加到抽屉内容的根布局