我是Android应用程序的新手,我希望有敏锐眼光的人能够发现我做错了什么。我已尝试按照docs步骤操作,为我的应用创建工具栏。但是,它没有显示三点溢出菜单(我认为是自动的)。
以下是我看到的内容:
我使用 minSdkVersion 19 。
MainAcivitiy.java
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:descendantFocusability="beforeDescendants"
android:focusableInTouchMode="true">
<android.support.v7.widget.Toolbar
android:id="@+id/my_toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
android:elevation="4dp"
android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"/>
布局\ main.xml中
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<item
android:id="@+id/action_settings"
android:orderInCategory="100"
android:title="@string/action_settings"
app:showAsAction="never"
android:visible="true" />
菜单\ main.xml中
<resources>
<!--
Base application theme, dependent on API level. This theme is replaced
by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
-->
<style name="AppTheme.Base" parent="Theme.AppCompat.Light">
<item name="android:windowNoTitle">true</item>
<item name="windowActionBar">false</item>
</style>
<style name="AppBaseTheme" parent="Theme.AppCompat.Light">
<!--
Theme customizations available in newer API levels can go in
res/values-vXX/styles.xml, while customizations related to
backward-compatibility can go here.
-->
</style>
<!-- Application theme. -->
<style name="AppTheme" parent="AppBaseTheme">
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
</style>
styles.xml
$(document).ready()
答案 0 :(得分:16)
我猜你错过了这个
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
答案 1 :(得分:2)
如果您的手机有物理菜单按钮,则无法看到三个点
如果你想强制显示三个点,请执行以下操作:
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<item
android:id="@+id/menu"
app:showAsAction="always"
android:icon="@drawable/ic_action_overflow"
android:visible="true" >
<menu>
<item
android:id="@+id/action_settings"
android:orderInCategory="100"
android:title="@string/action_settings"
app:showAsAction="never"
android:visible="true" />
</menu>
</item>
答案 2 :(得分:1)
解决方案:我尝试了以下方法,但我发现了这个问题。
我认为这是将该主题引用到Theme.AppCompat.Light
,这就是为什么这个主题有一个工具栏。
我刚刚做了这个并且它正在运作:
<resources>
<!--
Base application theme, dependent on API level. This theme is replaced
by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
-->
<style name="AppTheme.Base" parent="Theme.AppCompat.Light.NoActionBar">
<item name="android:windowNoTitle">true</item>
<item name="windowActionBar">false</item>
</style>
<style name="AppBaseTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!--
Theme customizations available in newer API levels can go in
res/values-vXX/styles.xml, while customizations related to
backward-compatibility can go here.
-->
</style>
<!-- Application theme. -->
<style name="AppTheme" parent="AppBaseTheme">
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
</style>
</resources>
<强>结果:强>
它正在运作。 但是,
使用您的代码和getSupportActionBar();
:
请注意,我们的工具栏颜色为灰色:
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@android:color/darker_gray"
android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
P.s:此外,我想确保您完美地执行此操作,正如doc所说,我们必须将其添加到Manifest
:
<application
android:theme="@style/Theme.AppCompat.Light.NoActionBar"
/>
似乎没有用,或者我们已经失去了一些东西。但是,我没有在我的清单上做到这一点,而且没有清单上面的代码就修复了。
答案 3 :(得分:0)
我遇到了同样的问题。我在这里尝试了一切here,没有任何帮助。一切都应该是这样。经过一整天的调查,我在onCreate方法中找到了这个陈述:
toolbar.setVisibility(View.INVISIBLE);
当我删除它时,geuss发生了什么:现在出现3点菜单,就像它应该的那样。
答案 4 :(得分:0)
在听完所有答案的建议后,溢出按钮仍未显示。这就是我解决它的方法:
在Activity.java上检查此方法的返回注释:
@return您必须返回true才能显示菜单,如果返回false,则不会显示。
答案 5 :(得分:0)
致电setHasOptionsMenu(true)
中的onCreateView
。
如果您是从片段中夸大菜单,例如通过覆盖onCreateOptionsMenu
方法。