android-actionbar 更改单击时的主页按钮

发布于 2024-12-09 00:19:12 字数 331 浏览 0 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

南冥有猫 2024-12-16 00:19:12

我在 ActionBar GitHub 页面上找到了这个
https://github.com/johannilsson/android-actionbar/issues/31

我建议您尝试分支imit-native-api中的新版本。然后您只需在操作上使用 setIcon 即可。

因此,克隆这个分支,它应该有一个 setIcon 方法,稍后我会自己尝试一下。

I found this on the ActionBar GitHub page
https://github.com/johannilsson/android-actionbar/issues/31

I would suggest you to try the new version that is in the branch mimic-native-api. Then you can simply use setIcon on the action.

So clone this branch and that should have a setIcon method, I will try it myself a little later on.

浅唱々樱花落 2024-12-16 00:19:12

要根据是否按下按钮获得不同的图像,请在 Drawable 文件夹中创建一个如下所示的 xml 文件:

<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_focused="true"
      android:state_pressed="true"
      android:drawable="@drawable/menu_tools_green"/>
<item android:state_focused="false"
      android:state_pressed="true"
      android:drawable="@drawable/menu_tools_green"/>
<item android:state_focused="true"
      android:drawable="@drawable/menu_tools_green"/>
<item android:state_focused="false"
      android:state_pressed="false"
      android:drawable="@drawable/menu_tools_orange"/>

如您所见,每个州都有一张图片。

问候

to have different images depending if you push a button or not, make a xml file like this in Drawable folder:

<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_focused="true"
      android:state_pressed="true"
      android:drawable="@drawable/menu_tools_green"/>
<item android:state_focused="false"
      android:state_pressed="true"
      android:drawable="@drawable/menu_tools_green"/>
<item android:state_focused="true"
      android:drawable="@drawable/menu_tools_green"/>
<item android:state_focused="false"
      android:state_pressed="false"
      android:drawable="@drawable/menu_tools_orange"/>

As you can see there is a pic for each state.

Regards

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文