gpt4 book ai didi

android - 如何让Android工具栏出现三个点

转载 作者:行者123 更新时间:2023-11-29 17:14:38 24 4
gpt4 key购买 nike

我是 Android 应用程序开发的新手,我正在尝试在 UI 中开发应用程序 我添加了一个工具栏,但不知道为什么工具栏右侧的三个点,这对我来说是必要的,因为我想在那里添加一个注销按钮。

enter image description here

这是工具栏布局:

 <?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_height="wrap_content"
android:background="#000">

</android.support.v7.widget.Toolbar>

这里是我在 Activity 类中添加工具栏的地方:

 toolbar= (Toolbar) findViewById(R.id.app_bar);
setSupportActionBar(toolbar);
toolbar.setTitle(R.string.app_name);
toolbar.setTitleTextColor(getResources().getColor(R.color.com_facebook_button_background_color_focused));

这是我的 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"
xmlns:tools="http://schemas.android.com/tools" tools:context=".HomeActivity">


<item android:id="@+id/action_settings"

android:title="Settings"
android:orderInCategory="100"
app:showAsAction="always"
android:icon="@drawable/icon"
/>

<item
android:id="@+id/action_search"
android:title="Search">
</item>
</menu>

奇怪的是,在 android studio 预览中显示了三个点:

enter image description here

我做错了什么?

最佳答案

res 文件夹中创建类型为 menuAndroid 资源目录 并添加名为 xml 的文件:

user_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:id="@+id/logout_menu"
android:orderInCategory="100"
android:title="@string/action_logout"
app:showAsAction="never" />
</menu>

在您的 Activity 中:

@Override
public boolean onCreateOptionsMenu(Menu menu) {
MenuInflater inflater = getMenuInflater();
inflater.inflate(R.menu.user_menu, menu);
return true;
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case R.id.logout_menu:
// Do whatever you want to do on logout click.
return true;
default:
return super.onOptionsItemSelected(item);
}
}

关于android - 如何让Android工具栏出现三个点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39546152/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com