我有一个使用ActionBar Sherlock的Android应用。我创建了一个具有ImageButton的菜单,其状态在可绘制的资源文件中定义。 (所有这些都贴在下面)。
虽然我能够切换ImageButton的选定/未选择状态,但点击监听器似乎无法触发。
当创建活动时,我膨胀菜单,我得到ImageButton并注册事件监听器。我调试了一切似乎没问题(我正在正确的ImageButton上注册事件)。
您认为ImageButton无法获得onClick回调?
...干杯
这里有一些代码:
菜单:
<menu xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:id="@+id/menu_save"
android:showAsAction="always|withText"
android:actionLayout="@layout/menu_my_activity"
/>
</menu>
menu_my_activity:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<ImageView
android:id="@+id/imageButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/button_with_states"
android:clickable="true" />
</LinearLayout>
并注册听众:
public boolean onCreateOptionsMenu(Menu menu) {
MenuInflater inflater = (MenuInflater) this.getMenuInflater();
inflater.inflate(R.menu.menu_watchlist, menu);
menu.getItem(0).getActionView().findViewById(R.id.imageButton).setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
Log.d("Test", "Hello");
}
});
return super.onCreateOptionsMenu(menu);
}
答案 0 :(得分:3)
这是我建议的修复方法。确实不需要单独的actionLayout,因为你想要的结果非常简单。请注意,我们不需要为ActionBar创建“ImageView”... android:icon
属性为我们设置了它。使用android:title
设置图标的文字。
menu_watchlist.xml:
<menu xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:id="@+id/image_button"
android:showAsAction="always|withText"
android:title="title"
android:icon="@drawable/button_with_states" />
</menu>
设置选项菜单:
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.menu_watchlist, menu);
return super.onCreateOptionsMenu(menu);
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case R.id.image_button:
Log.d("Test", "Hello");
break;
}
return super.onOptionsItemSelected(item);
}
希望这适合你!
答案 1 :(得分:1)
当您按下ActionView,在ABS或本机系统ActionBar中时,将调用onOptionsItemSelected方法。您不需要手动附加事件监听器,实际上这种方法不一致地工作。
收听ActionItem选择:
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case R.id.menu_save:
//Save was pressed, call a method
break;
case R.id.menu_another_item:
//A different item was pressed
break;
}
return super.onOptionsItemSelected(item);
}
使用onOptionsItemSelected有点反直觉,但可以追溯到使用Menus的时代,就像onCreateOptionsMenu一样。