Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/extjs/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Intellij 13.1.3中的渲染问题,只有API 20;在IDE中呈现布局时使用的Android版本;_Android_Intellij Idea - Fatal编程技术网

Intellij 13.1.3中的渲染问题,只有API 20;在IDE中呈现布局时使用的Android版本;

Intellij 13.1.3中的渲染问题,只有API 20;在IDE中呈现布局时使用的Android版本;,android,intellij-idea,Android,Intellij Idea,我看了这个答案,但只有API 20,不能设置较低版本 我的项目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">

我看了这个答案,但只有API 20,不能设置较低版本

我的项目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>


我错过什么了吗?

你没有其他SDK。

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

您没有其他SDK。

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

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


我只有API 23可供选择,没有其他选择。

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


我只有API 23可供选择,没有其他选择。

谢谢,它真的很有用谢谢,它真的很有用