在Intellij 13.1.3中渲染问题,在IDE中渲染布局时,只有API 20才能使用?#34;

时间:2014-08-06 05:58:58

标签: android intellij-idea

我读了这个答案Rendering issue for Android with Intellij 13.1.3,但是只有API 20,无法设置较低版本 enter image description here

我的项目AndroidManifest.xml

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

<uses-sdk
    android:minSdkVersion="9"
    android:targetSdkVersion="16"/>
<application
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name">
    <activity
        android:name="MyActivity"
        android:label="@string/app_name">
        <intent-filter>
            <action android:name="android.intent.action.MAIN"/>
            <category android:name="android.intent.category.LAUNCHER"/>
        </intent-filter>
    </activity>
</application>

我错过了什么吗?

2 个答案:

答案 0 :(得分:5)

您没有其他SDK 要下载它们,请从Android Studio打开SDK管理器,然后下载Android 4.4.2 (API 19)

答案 1 :(得分:0)

这正是我所做的,我之前下载了SDK,但下拉菜单中没有出现任何新内容。我可以在项目设置中更改目标Android版本,但这并不能解决布局问题。

我只有API 23可供选择而已。