我需要创建一个自定义视图来在 Sherlock ActionBar 中设置一个额外的 Action。这是xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="right"
android:orientation="horizontal" >
<ImageButton
android:id="@+id/edit"
style="@style/Widget.Sherlock.ActionButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_edit" />
</LinearLayout>
这是代码:
LayoutParams lp = new LayoutParams(LayoutParams.WRAP_CONTENT,
LayoutParams.WRAP_CONTENT, Gravity.RIGHT
| Gravity.CENTER_VERTICAL);
ActionBar actionbar = getSherlockActivity().getSupportActionBar();
actionbar.setCustomView(getSherlockActivity().getLayoutInflater()
.inflate(R.layout.top_sample_detail, null), lp);
actionbar.setDisplayOptions(ActionBar.DISPLAY_HOME_AS_UP
| ActionBar.DISPLAY_SHOW_HOME | ActionBar.DISPLAY_SHOW_CUSTOM
| ActionBar.DISPLAY_SHOW_TITLE);
我可以通过定位轻松找到edit
按钮actionbar.getCustomView().findViewById(R.id.edit)
,但这不是问题。我想知道是否有默认的自动方式在长按后在 Toast 中显示按钮的名称,就像它是非自定义视图中的操作一样。
tl;博士
总结一下:是否有一个属性/方法/属性可以设置为ImageButton
,以使其表现为一个操作项并Toast
在长按时显示一个,就像操作项一样?