Android Studio渲染问题,首次使用它

时间:2015-11-23 05:18:20

标签: java android

我已经开始学习android了。

我使用的是Android Studio 1.5和Java jdk 1.8.0_65。 我确信环境变量路径已正确设置。

所以我尝试做的是,启动android studio - >创建新项目 - >选择手机和平板电脑与minumum sdk API 8 - >添加空白活动 - >光洁度

起初没有问题,但是当我尝试将主题更改为素材时,这就是我得到的错误,

enter image description here

我已尝试清除缓存并重新启动,但它无法正常工作

应用依赖项如下所示 enter image description here

在IDE中渲染布局时使用的Android版本的下拉菜单中,我只获得一个选项

enter image description here

build.gradle文件

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.2"

    defaultConfig {
        applicationId "com.example.jeet.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'
}

AndroidManifest.xml文件

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.jeet.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>

如果有帮助,这些是SDK管理器中安装的软件包

enter image description here

我该怎么做才能解决这些问题?我可以使用另一个主题,但我想了解这些问题的原因并解决它们。

1 个答案:

答案 0 :(得分:2)

您的活动将扩展“AppCompatActivity”,这需要使用appcompat主题。您可以将其更改为“活动”并尝试其他主题。