简体   繁体   English

Android Studio 菜单图标重复

[英]Android Studio Menu Icon duplicated

I have the menu icon (3 dots) duplicated I used the following code:我有重复的菜单图标(3个点)我使用了以下代码:

@Override public boolean onPrepareOptionsMenu(final Menu menu) {
menu.clear();
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.home, menu);
return super.onCreateOptionsMenu(menu);

} }

but it didn't solve my problem is it because I'm using androidx libraries?但它没有解决我的问题是因为我使用的是 androidx 库吗? My XML code for the menu:我的菜单的 XML 代码:

<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:app="http://schemas.android.com/apk/res-auto">
 <item android:title="more"
    android:id="@+id/moreVertical"
    android:icon="@drawable/baseline_more_vert_black_18dp"
    app:showAsAction="always" />
    <item android:title="@string/titlecontactus" android:id="@+id/mnuContactUs"/>
<item android:title="@string/titlepolicy" android:id="@+id/mnuPolicy"/>

my toolbar XML code in the activity:活动中我的工具栏 XML 代码:

   <androidx.appcompat.widget.Toolbar
    android:id="@+id/my_toolbar" app:title="@string/title"
    android:layout_width="match_parent"
    android:layout_height="?attr/actionBarSize"
    android:background="?attr/colorPrimaryDark"
    android:elevation="4dp"
    android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
    app:popupTheme="@style/ThemeOverlay.AppCompat.Light">

</androidx.appcompat.widget.Toolbar>

I just removed the item I made for 3 dots which has the title more and everything worked fine it seems the 3 dots appear by default and no need to add an item for it or download its 3 dots image.It seems the article I followed was wrong or may be out of date.Hope someone could help on my second question: Copy sqlite in android studio assets not working我刚刚删除了我为 3 点制作的项目,它的标题更多,一切正常,似乎 3 点默认出现,无需为其添加项目或下载其 3 点图像。看来我关注的文章是错误或可能已过时。希望有人可以帮助解决我的第二个问题: Copy sqlite in android studio assets not working

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM