android-actionbar 更改单击时的主页按钮
我正在使用 android-actionbar 插件。
我成功添加了一个家庭操作:
actionBar.setHomeAction(
new IntentAction(this,
DisciplinesController.createIntent(this), R.drawable.back_button));
现在我想在按下按钮时更改可绘制的... 有什么想法吗?
谢谢
I'm using the android-actionbar plugin.
I successfully added a home action with :
actionBar.setHomeAction(
new IntentAction(this,
DisciplinesController.createIntent(this), R.drawable.back_button));
Now I would like to change the drawable when button is pressed ...
Any idea ?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我在 ActionBar GitHub 页面上找到了这个
https://github.com/johannilsson/android-actionbar/issues/31
因此,克隆这个分支,它应该有一个 setIcon 方法,稍后我会自己尝试一下。
I found this on the ActionBar GitHub page
https://github.com/johannilsson/android-actionbar/issues/31
So clone this branch and that should have a setIcon method, I will try it myself a little later on.
要根据是否按下按钮获得不同的图像,请在 Drawable 文件夹中创建一个如下所示的 xml 文件:
如您所见,每个州都有一张图片。
问候
to have different images depending if you push a button or not, make a xml file like this in Drawable folder:
As you can see there is a pic for each state.
Regards