- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用以下 xml 来扩充我的工具栏
<com.google.android.material.appbar.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="true">
<com.google.android.material.appbar.MaterialToolbar
android:id="@+id/toolbar"
style="?toolbarStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:menu="@menu/report_list"
app:navigationIcon="@drawable/ic_nav_back"
app:subtitle="@string/select_create_report"
app:title="@string/damage_reports" />
</com.google.android.material.appbar.AppBarLayout>
我可以像这样在膨胀的 xml 中找到工具栏:
mToolbar = findViewById(R.id.toolbar)
菜单正确显示
我的问题是,由于我没有通过 onCreateOptionsMenu
扩充工具栏,所以我无法使用 onOptionsItemSelected
来处理事件。
所以我决定将直接听众添加到不同的菜单项。
但问题是我在使用时无法获得对它们的引用
mToolbar.findViewById(R.id.search_reports)
它返回 null(坦率地说,这是我所期望的)但是当我也使用
mToolbar.menu.findItem(R.id.search_reports)
我也得到null
然而,当我检查 mToolbar.actionItems[0] 时,我看到 SearchView 的字符串表示显示它的 id 是
androidx.appcompat.widget.SearchView{c1aeba0 VFE...... ......I. 0,0-0,0 #7f0800fb app:id/search_reports}
并且来自该操作项的 mId 是 2131230971,它转换为 7F0800FB,当在构建/生成的内部搜索时指向
public static final int search_reports=0x7f0800fb;
但是当我检查 R.id.search_reports 而不是 2131230971(这将使 findMenuItem 工作)时,我得到 -1000038
我的应用程序设置有问题吗?或者是否有不同的方法来查找特定的菜单项
编辑:作为旁注,这似乎有效
mToolbar.setOnMenuItemClickListener(this::menuItemClicked)
private fun menuItemClicked(item: MenuItem): Boolean {
return when (item.itemId) {
R.id.search_reports -> {
vm.search_stuff()
true
}
else -> false
}
但我还是想知道为什么findItem不起作用
编辑 2:对于那些可能遇到这种情况的人来说,似乎在评估和调试期间资源编号确实不同,但是如果您实际上将 mToolbar.menu.findItem(R.id.search_reports) 放在代码中并运行它,它会工作,即使它在调试时不起作用
最佳答案
您可以像这样在项目上设置点击监听器:
Toolbar toolbar = findViewById(R.id.toolbar);
//remember your menu item id !! mine is R.id.psMenuRefresh
toolbar.getMenu().findItem(R.id.psMenuRefresh).setOnMenuItemClickListener(new MenuItem.OnMenuItemClickListener() {
@Override
public boolean onMenuItemClick(MenuItem menuItem) {
Log.i("mytag","helooo");
return false;
}
});
给你。
关于android - 使用应用程序 :menu in android's Toolbar I cannot locate the menu items 时,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59406450/
我正在尝试在 python 中编写正则表达式来查找目录路径:我的文本如下所示: text = "The public disk is: \\\\diskA\\FolderB\\SubFolderC\\
我想写一个LocationListener,它把最近最精确的位置作为它的位置。我打算在我的 LocationListener 中使用此代码: @Override public void
我想建立一个有光泽和 plotly 的交互式图表。 Shiny 有一个内置功能来获取有关用户交互的信息。比如:input$plot_click、input$plot_dblclick、input$pl
我正在使用 MobileFirst 提供的 WL.Device.Geo.acquirePosition(onGeoLocationSuccess, onGeoLocationFailure, opti
我最近开始使用 ionic 框架,它里面有 angular js。为了在屏幕之间导航,我使用了 $location.path 并且效果很好。但是,在我下载的一个示例中,我看到 $state.go 被用
谁能解释一下这种行为?我使用 history.pushState(null, null, '#test'); 推送历史状态。然后,当尝试使用console.log(window.location.ha
这里是相关代码: https://www.facebook.com/sharer/sharer.php?u={{$location.absUrl()}} https://www.facebook.c
这两个重定向之间有什么区别?我有一个应用程序,当我使用时,它可以在 chrome 和 android 4 上正常工作,但在 android 2.x.x 上不能正常工作 document.locatio
JavaScript 的区别是什么 window.location.href = window.location.href 和 window.location.reload() 功能? 最佳答案 如果
有什么区别 window.location.href="http://example.com"; window.location.replace("http://example.com"); wind
JavaScript 的区别是什么 window.location.href = window.location.href 和 window.location.reload() 功能? 最佳答案 如果
以下 3 个指令之间有区别吗? location ~* \.(png)$ { expires max; log_not_found off; } location ~ \.(png)$ {
位于正文末尾之前的以下脚本在 Internet Explorer 和 Chrome(以及任何其他浏览器)中都会被调用。但重定向到指定的 URL 仅发生在 IE 中。我还尝试了 window.locat
我正在使用 Angular ngRouter。我需要更改 url 路径以及搜索参数。我知道 $location.path 和 $location.search,但是有没有一个函数可以同时设置它们? 最
在angularjs中用$location和window.location哪个更好。 例如,我们可以使用$location.path() 或window.location.href 来完成同样的工作。
我在我的网站上使用上述 2 个命令。似乎它们对 95% 访问它应该触发的页面的人有效,但对其他人则不会。 有谁知道是否可以完全阻止这些 javascript 命令?我真的很头疼为什么它们有时不起作用。
这是我无法弄清楚的另一个错误。 我有这个类ExtendedLocation extends Location实例化时抛出 ClassCastExceptioncurrentGpsLocation =
我一直在尝试简单地将一个包含两个变量(一个字符串和一个位置)的类推送和读取到 firebase,但我一直收到此错误。 **com.google.firebase.database.DatabaseEx
我注意到 iPhone 上的“常用位置”似乎比监控 iOS 访问的应用程序 (https://developer.apple.com/reference/corelocation/clvisit) 使
在我的 javascript 代码中,在某些时候,我需要刷新窗口(用户上传了新图片但在页面中仍然可以看到它) 我想知道为什么 location.href = location.href 不刷新窗口?
我是一名优秀的程序员,十分优秀!