我正在使用AppCompat和工具栏.
当导航抽屉图标从汉堡包转换为箭头或反之时,我确保会有动画.
@style/DrawerArrowStyle
true
@android:color/white
当我按下导航抽屉,滑入&滑出菜单.但是,它不是很有用.根据材料设计指南,导航抽屉片段应为全高.因此,当它开始滑出时,它将阻止导航抽屉图标.
在处理我的搜索按钮(action_search)时,我更感兴趣的是执行动画,该按钮充当我的工具栏的动作视图.
main_menu.xml
android:title="Search me"
android:icon="@drawable/ic_add_white_24dp"
app:showAsAction="always|collapseActionView"
app:actionLayout="@layout/collapsible_searchtext" />
android:orderInCategory="100" app:showAsAction="never" />
collapsible_searchtext.xml
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
>
android:id="@+id/search"
android:dropDownWidth="match_parent"
android:completionThreshold="1"
android:inputType="textNoSuggestions"
android:imeOptions="actionSearch|flagNoExtractUi"
android:focusable="true"
android:focusableInTouchMode="true"
android:singleLine="true"
android:hint="Search stock"
android:layout_gravity="center_vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
>当我按下action_search时,搜索图标将扩展为AutoCompleteTextView.同时,汉堡图标将动画显示箭头图标
>当我按箭头图标时,箭头图标将动画回汉堡包图标.
private void animateHamburgerToArrow() {
ValueAnimator anim = ValueAnimator.ofFloat(0f, 1f);
anim.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
@Override
public void onAnimationUpdate(ValueAnimator valueAnimator) {
float slideOffset = (Float) valueAnimator.getAnimatedValue();
actionBarDrawerToggle.onDrawerSlide(drawerLayout, slideOffset);
}
});
anim.setInterpolator(new DecelerateInterpolator());
// You can change this duration to more closely match that of the default animation.
anim.setDuration(500);
anim.start();
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
if (actionBarDrawerToggle.onOptionsItemSelected(item)) {
return true;
}
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
//noinspection SimplifiableIfStatement
if (id == R.id.action_settings) {
animateHamburgerToArrow();
return true;
} else if (id == R.id.action_search) {
animateHamburgerToArrow();
return true;
}
return super.onOptionsItemSelected(item);
}
当我按下action_search时,汉堡包图标会变为箭头图标.但是,没有动画.我可以知道有什么我错过了吗?
更新
我怀疑导航抽屉使用的左箭头与搜索操作视图使用的左箭头不同.它们是两个不同的实例.
这是因为如果我点击action_settings,我可以观察动画.但是,如果我单击action_search,我将不会观察动画.我怀疑搜索操作视图使用了左箭头,“阻止”导航抽屉的图标(包括汉堡包和箭头)