美文网首页
Android Studio 无法预览xml布局视图的解决办法

Android Studio 无法预览xml布局视图的解决办法

作者: CarlosLynn | 来源:发表于2018-07-18 12:28 被阅读56次

解决办法:

在AndroidManifest.xml文件中找到 全局样式文件 Theme,如图:

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

    <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>

进入到这个文件,在前面增加 "Base".,修改后如图:

<resources>

    <!-- Base application theme. -->
    <style name="AppTheme" parent="Base.Theme.AppCompat.Light">
    </style>

    <style name="Base.Theme.AppCompat.Light">
        <!-- Customize your theme here. -->
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="colorAccent">@color/colorAccent</item>
    </style>

</resources>

最终结果:


image.png

相关文章

网友评论

      本文标题:Android Studio 无法预览xml布局视图的解决办法

      本文链接:https://www.haomeiwen.com/subject/pndopftx.html