- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
有什么简单的方法可以在显示/隐藏时使用淡入/淡出动画为 ActionBar 项目设置动画?也许是这样的:
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getSupportMenuInflater().inflate(R.menu.menu, menu);
if (visible) {
menu.findItem(R.id.randomItemID).setVisible(true);
else {
menu.findItem(R.id.randomItemID).setVisible(false);
}
return true;
}
private void showHideActionItem() {
if (visible) {
// Fade Out animation here
visible = false;
invalidateOptionsMenu();
} else {
// Fade In animation here
visible = true;
invalidateOptionsMenu();
}
}
谢谢,托尼。
最佳答案
我发现这个问题真的很有趣,所以我决定找到一个解决方案(所以请原谅我,如果这个解决方案不是最佳的,它只是一个展示方法的例子)。
经过一些研究,我决定使用 Android timer : 全局的想法是有一个计时器,它会定期更新 actionBar 背景(所以为了制作 fade_in 效果,我只需要保持相同的背景并改变它的不透明度)。
这里是我的实现:
首先:我的自定义类将完成大部分工作:
public class ToolbarAnimator {
private final static String TAG = ToolbarAnimator.class.getSimpleName();
private final int ALPHA_MAX = 255;//just look at the documentation
private final int NUMBER_OF_TICK = 255;//can go from 1 to 255, it's the number of tick
private final int ALPHA_PER_TICK = ALPHA_MAX / NUMBER_OF_TICK;//alpha we'll remove/add on every tick
private long DELAY = 1000;//amount of time in milliseconds before animation execution.
private final AppCompatActivity mActivity;
/*
** Private field
*/
private ActionBar mActionBar;
private Timer mTimer;
private int mCurrentAlpha;
private int mActionBarBackgroundColor;
/*
** Constructor
*/
public ToolbarAnimator(@NonNull AppCompatActivity activity, @NonNull final ActionBar actionBar, final int actionBarBackgroundColor) {
mActivity = activity;
mActionBar = actionBar;
mTimer = new Timer();
mCurrentAlpha = 0;
mActionBarBackgroundColor = actionBarBackgroundColor;
}
/*
** Public method
*/
public void start(final long duration) {
final long period = duration / NUMBER_OF_TICK;//time beetwen 2 run() call
Log.d(TAG, "start");
Log.d(TAG, "delay = " + DELAY);
Log.d(TAG, "period = " + period);
Log.d(TAG, "duration = " + duration);
Log.d(TAG, "alphaPerTick = " + ALPHA_PER_TICK);
//init a timer which will updateActionBarColor on every each period
mTimer.schedule(new TimerTask() {
@Override
public void run() {
//update the actionBar
updateActionBarColor();
}
}, DELAY, period);
}
/*
** Private method
*/
private void updateActionBarColor() {
//We have to go to the main thread for updating the interface.
mActivity.runOnUiThread(new TimerTask() {
@Override
public void run() {
//check if the animation is finish
if (mCurrentAlpha > 255 || mCurrentAlpha < 0) {
Log.d(TAG, "cancel timer");
mTimer.cancel();
mTimer.purge();
return;
}
//create the new backgroundColorDrawable
final Drawable backgroundDrawable = new ColorDrawable(mActionBarBackgroundColor);
backgroundDrawable.setAlpha(mCurrentAlpha);
//apply the new color
mActionBar.setBackgroundDrawable(backgroundDrawable);
//upgrade alpha
mCurrentAlpha += ALPHA_PER_TICK;
}
});
}
}
当你有这个类时,你可以从任何 Activity 或 fragment 开始动画:
@Override
public boolean onCreateOptionsMenu(Menu menu) {
//just inflate the actionBar
getMenuInflater().inflate(R.menu.menu_main, menu);
//Check if the supportActionBar has been enable
final ActionBar actionBar = getSupportActionBar();
if (actionBar != null) {
//Start a 2s animation on the actionBar
new ToolbarAnimator(this, actionBar, Color.RED).start(2 * 1000);
}
return true;
}
更新:
我已经做了一个实现更多功能的示例应用程序(例如,您可以选择淡入淡出或淡入淡出),您可以找到源代码here .
关于java - Android - 显示/隐藏 ActionBar 项目时淡入/淡出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19796229/
我似乎对 git 存储库有权限问题。 当我 pull 入一个不是我的 Linux 用户创建的目录时,我出现了这个错误。 fatal: Unable to create '/home/---/.git/
在 Git 中,您可以将给定目录克隆到给定目录: git clone ssh://gitolite@dev.bipper.com:3687/com/bipper/kids/portal 当我运行我们
目前,如果您在分支 V2 中并执行“git pull origin V3”,它会将 V3 merge 到 V2,甚至不会发出警告或提示。这个选项可以以某种方式被阻止吗?我在这里阅读了所有类似的问题,人
我刚开始使用 Oracle 的 Coherence 缓存,我注意到这一点:如果我在缓存中放入一个 ConcurrentHashMap 对象,当我检索它时,我可以看到它被转换为一个普通的 HashMap
看起来我缺少对 git pull 和 git commit 的基本理解,假设我在分支上工作,而它在我更新时被其他开发人员更新了在本地做我的工作。我应该在发出 git pull 之前提交更改,还是应该执
好的。所以我以为我已经舔过了……但现在…… 我有一个项目,其中包含一个来自 GitHub 的小型库作为子模块。在该 super 项目的原始版本中,子模块按预期工作。 但是,我只是克隆了 super 项
使用 Visual Studio Code 中的内置 Git,我看不到将指定的远程分支 pull 入当前分支的方法。我可以这样做吗? 示例:我正在分支 myBranch 上工作,更改已 merge 到
当我尝试提交或 pull 此错误时 Bus error (core dumped) 发生了! 当我用 gdb 调试它时,(gdb git,run commit -a,where) 结果是: mucul
我对默认 Rails Rake 任务的预期用途有点困惑,想咨询一下我是否应该使用 db:reset或编写自定义 Rake 任务。没什么聪明的,只是日常管理,而且我很可能会错过一个明显的文档,因为我是
所以我做了: git reset --hard #commithash # make a bunch of changes, fixes and so on. git add -A git commi
我已使用以下命令成功部署到 firebase 托管应用: firebase init firebase deploy 在这个阶段,我正在执行 git pull 以将 repo 下 pull 到暂存服务
当尝试在 Eclipse 的 git 存储库中 pull (团队|从上下文菜单中 pull )时,出现 Could not get advertised Ref for branch refs/hea
我是一名优秀的程序员,十分优秀!