应用程序栏未在Android Studio中显示,但在实际的android设备上显示

时间:2019-01-27 03:42:10

标签: android-studio navigationbar

我已经检查了类似我的类似问题,但是没有一个帮助。我还用相同的AppTheme检查了我以前的项目,它们是相同的,但是我注意到每次创建一个新的android项目时,即使经过几次“重建项目”,应用程序栏也不会显示。

这是我的styles.xml显示的内容

j

这是我的AndroidManifest.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>

</resources>

我的MainActivity.java(尚未添加代码)

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.mycontact">

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

还有我的activity_main.xml

package com.example.mycontact;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }
}

我也尝试过从ContraintLayout,RelativeLayout更改布局,但没有任何更改。放大和缩小布局完全不变。这是一个snapchat ..谢谢您的帮助。

activity_main.xml page

1 个答案:

答案 0 :(得分:3)

您的styles.xml和其他文件似乎顺序良好,因此请尝试以下操作。

在XML布局预览上方的工具栏上,单击“眼睛”图标,如果未选中,则选择“显示布局装饰”。这应该使其同时显示AppBar和系统导航栏。

供参考的屏幕快照,在Android Studio 3.3上拍摄:


1. 缺少装饰的布局 Layout with decorations missing


2. 按“眼睛”图标,然后选择选项 Menu to be selected


3. 装饰(AppBar和系统导航栏)现在应该可见 Layout preview with decorations