我计划在我的应用程序中使用快速操作 UI 模式。Android 快速操作 UI 模式。快速操作窗口需要一个枢轴视图才能坚持。
quickAction.show(View pivotView);
我打算对菜单项使用快速操作,我可以访问被单击的项目。但问题是我需要从菜单项中引用一个视图,以便我可以将它传递给快速操作。
如何获取对所选 menuItem 中的视图的引用。
我计划在我的应用程序中使用快速操作 UI 模式。Android 快速操作 UI 模式。快速操作窗口需要一个枢轴视图才能坚持。
quickAction.show(View pivotView);
我打算对菜单项使用快速操作,我可以访问被单击的项目。但问题是我需要从菜单项中引用一个视图,以便我可以将它传递给快速操作。
如何获取对所选 menuItem 中的视图的引用。
您可以通过在 xml 中为您的菜单项提供一个 actionViewClass 属性来实现这一点,然后您将能够获得您想要的枢轴视图。代码将是这样的
<item
android:id="@+id/menu_find"
android:showAsAction="ifRoom"
android:actionViewClass="android.widget.ImageButton"
/>
在您的 OnCreateOptionsMenu 中执行此操作
public boolean onCreateOptionsMenu(Menu menu) {
super.onCreateOptionsMenu(menu);
getMenuInflater().inflate(R.menu.menu_search, menu);
locButton = (ImageButton) menu.findItem(R.id.menu_find).getActionView();
locButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
createPopup();
mQuickAction.show(v);
}
});
return true;
}
老问题,但我遇到了一些actionViewClass
属性问题。对于以后遇到这种情况的任何人...
调用findViewById(R.id.mnu_item)
将onOptionsItemSelected
返回一个View
锚点。
QuickActions
虽然MenuItems
不是很好的设计,但我发现它们是实现具有自定义背景的子菜单的最简单方法。
为了获得菜单项的参考视图,我们需要这样做,
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.section, menu);
new Handler().post(new Runnable() {
@Override
public void run() {
final View menuItemView = findViewById(R.id.action_preview);
// SOME OF YOUR TASK AFTER GETTING VIEW REFERENCE
}
});
return true;
}
任何出于其他原因(如我想要的)想要找到菜单视图项的人的更新。
如果您可以访问并使用 AppCompat 的工具栏,那么有一种方法。这不是最有效的方法,但它是我发现访问菜单项视图的最简单方法。
public void onViewCreated(View view, @Nullable Bundle savedInstanceState) {
Toolbar toolbar = (Toolbar) view.findViewById(R.id.toolbar);
// Find Menu
for (int toolbarChildIndex = 0; toolbarChildIndex < toolbar.getChildCount(); toolbarChildIndex++) {
View view = toolbar.getChildAt(toolbarChildIndex);
// Found Menu
if (view instanceof ActionMenuView) {
ActionMenuView menuView = (ActionMenuView) view;
// All menu items
for (int menuChildIndex = 0; menuChildIndex < menuView.getChildCount(); menuChildIndex++) {
ActionMenuItemView itemView = (ActionMenuItemView) menuView.getChildAt(menuChildIndex);
// Do something to itemView...
}
}
}
}
也适用于 Android 10 的通用代码
/**
* pass toolbar and menu item id, i.e. R.id.menu_refresh
*/
@Nullable
@Throws(
IllegalAccessException::class,
NoSuchFieldException::class
)
fun getMenuItemView(toolbar: Toolbar?, @IdRes menuItemId: Int): View? {
val mMenuView: Field = Toolbar::class.java.getDeclaredField("mMenuView")
mMenuView.setAccessible(true)
val menuView: Any? = mMenuView.get(toolbar)
(menuView as ViewGroup).children.forEach {
if(it.id == menuItemId) {
return it
}
}
return null
}
科特林!!
override fun onCreateOptionsMenu(Menu menu): Boolean {
/*Adding menu items to action bar*/
menuInflater.inflate(R.menu.main, menu)
/*Getting menu item*/
val locButton: MenuItem = menu.findItem(R.id.menu_find)
/*Creating click listener*/
locButton.setOnMenuItemClickListener{
/*TODO: Handle it*/
true
}
return true;
}
在主活动类中,最好重写 onOptionsItemSelected(...) 方法;应该如下所示:
public boolean onOptionsItemSelected(MenuItem item) {
// the id is of type int
int someId = item.getItemId();
// can use an if() or switch() statement to check if id is selected
//a Toast message can be used to show item is selected
}