Android Studio 1.5.1渲染问题

时间:2016-01-13 17:10:51

标签: android android-studio android-theme

我是android studio的新手,我安装了新版本(版本1.5.1)。 出于某种原因,我不断收到错误消息(每次我使用应用程序主题)时都说有渲染问题:缺少样式。 我在网上寻找解决方案,但其中大部分都已过时或只是不起作用。

An image of the error

感谢您的帮助。

清单文件:

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

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity
            android:name=".MainActivity"
            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>
    </application>

</manifest>

构建gradle:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.2"

    defaultConfig {
        applicationId "com.easycodingplus.myapplication"
        minSdkVersion 8
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.1.1'
    compile 'com.android.support:design:23.1.1'
}

7 个答案:

答案 0 :(得分:4)

只需像这样更改您的style.xml文件

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

然后,转到

  

档案&gt;项目结构&gt; app&gt;

和设置(两者应与最新版本相同)

source compatibility : 1.7

Target compatibility : 1.7

答案 1 :(得分:0)

请确保您在build.gradle文件中将最新的AppCompat库列为依赖项:

com.android.support:appcompat-v7:23.1.0

您可以发布错误所指的样式吗?您可能需要在res中添加样式&gt;值&gt;样式文件夹。代码中的某些内容可能引用了该文件夹中不存在的样式。

答案 2 :(得分:0)

您必须在设计中加入dependencies,这将添加到dependencies app模块的build.gradle块下>

compile 'com.android.support:design:23.1.1'

它应该是这样的......

您需要此支持库CoordinatorLayoutAppBarLayoutFloatingActionButton部分

enter image description here

在样式文件中创建一个样式

<style name="AppTheme" parent="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>
    <item name="windowActionBar">false</item>
    <item name="windowNoTitle">true</item>
</style>

并在AndroidManifest文件中引用

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:largeHeap="true"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">// like this

答案 3 :(得分:0)

尝试这种方式:

保持互联网连接

转到android studio工具栏中的“文件”,点击“invalidate caches / Restart”并选择“invalidate and restart”

答案 4 :(得分:0)

我也面临同样的问题所以我做了...去sdk经理 - &gt;勾选android 5.1.1 api 22级并安装它.... tick android 5.1.1 api level 22 and installed it.. 然后转到预览窗口并选择其他版本

then go to Preview window and select other version

答案 5 :(得分:0)

3个选项

1.选择低级API版本

I have 23 but you can go for 19 or 21

2.在styles.xml上添加基础

select theme from AppTheme or dealer here

3.安装以前的SDK(如果需要)

答案 6 :(得分:-1)

我遇到了同样的问题,这些步骤帮助我解决了这个问题: 1.文件&gt;其他设置&gt;默认设置&gt;外观&amp;行为&gt;文件编码。 2.将项目编码更改为windows-1252。然后: 3.文件&gt;使Chaches / Restart无效。               或者最糟糕的情况 将主题更改为Material light或其他内容,其中一个应该可以使用。 我希望这会有所帮助。