缺少操作栏和菜单选项 - Android
Action Bar and menu options are missing - Android
我正在练习教程。在我实施列表视图之前,应用程序运行良好。现在操作栏和菜单选项消失了。有人可以帮我确定 issue.Below 是必需的代码吗(如果需要更多信息,请告知)。
activity_home.xml
<?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"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context=".HomeActivity"
tools:showIn="@layout/activity_home">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay" />
<ListView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="match_parent">
</ListView>
</RelativeLayout>
styles.xml
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
<style name="AppTheme.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>
<style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />
<style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />
</resources>
manifest.xml
<application
android:name=".Application"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
>
<activity
android:name=".HomeActivity"
android:label="@string/app_name"
android:theme="@style/AppTheme.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".LoginActivity"
android:label="@string/title_activity_register"
android:theme="@style/AppTheme.NoActionBar" />
<activity
android:name=".RegisterActivity"
android:label="@string/title_activity_login"
android:theme="@style/AppTheme.NoActionBar" />
<activity
android:name=".UpdateStatusActivity"
android:label="@string/title_activity_update_status"
android:theme="@style/AppTheme.NoActionBar"></activity>
</application>
</manifest>
改变
android:theme="@style/AppTheme.NoActionBar"
在您的 AndroidManifest.xml
文件中
android:theme="@style/AppTheme"
应该可以。
在清单中,您提到 AppTheme 作为应用程序的主题,但对于每个 activity,您提到的主题都是 AppTheme.NoActionBar
对于 HomeActivity,您需要使用 AppTheme 而不是 NoActionBar 主题
只需删除
android:theme="@style/AppTheme.NoActionBar"
来自 HomeActiviy 清单中的 activity 标签
您在 manifest.xml 文件中使用 android:theme="@style/AppTheme.NoActionBar"
如果不能更改主题,请不要写 android:theme 行
我正在练习教程。在我实施列表视图之前,应用程序运行良好。现在操作栏和菜单选项消失了。有人可以帮我确定 issue.Below 是必需的代码吗(如果需要更多信息,请告知)。
activity_home.xml
<?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"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context=".HomeActivity"
tools:showIn="@layout/activity_home">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay" />
<ListView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="match_parent">
</ListView>
</RelativeLayout>
styles.xml
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
<style name="AppTheme.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>
<style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />
<style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />
</resources>
manifest.xml
<application
android:name=".Application"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
>
<activity
android:name=".HomeActivity"
android:label="@string/app_name"
android:theme="@style/AppTheme.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".LoginActivity"
android:label="@string/title_activity_register"
android:theme="@style/AppTheme.NoActionBar" />
<activity
android:name=".RegisterActivity"
android:label="@string/title_activity_login"
android:theme="@style/AppTheme.NoActionBar" />
<activity
android:name=".UpdateStatusActivity"
android:label="@string/title_activity_update_status"
android:theme="@style/AppTheme.NoActionBar"></activity>
</application>
</manifest>
改变
android:theme="@style/AppTheme.NoActionBar"
在您的 AndroidManifest.xml
文件中
android:theme="@style/AppTheme"
应该可以。
在清单中,您提到 AppTheme 作为应用程序的主题,但对于每个 activity,您提到的主题都是 AppTheme.NoActionBar 对于 HomeActivity,您需要使用 AppTheme 而不是 NoActionBar 主题 只需删除
android:theme="@style/AppTheme.NoActionBar"
来自 HomeActiviy 清单中的 activity 标签
您在 manifest.xml 文件中使用 android:theme="@style/AppTheme.NoActionBar"
如果不能更改主题,请不要写 android:theme 行