gpt4 book ai didi

Android Maven archtype 项目布局在 ADT 图形编辑器上显示不正确

转载 作者:行者123 更新时间:2023-11-30 03:18:59 25 4
gpt4 key购买 nike

我使用命令行 ( http://stand.spree.de/wiki_details_maven_archetypes ) 创建了一个 Android-Maven 原型(prototype)项目。

当我将此项目导入 ADT(以便我可以利用图形编辑器的一些优势)时,我发现图形编辑器没有正确显示 View 。
对于res/layout下自动生成的activity_main.xml,它没有显示预期的布局。相反,它提示:

No resources match the configuration

, , Locale Language ___Region __, Left To Right, sw320dp, w320dp, h533dp, Normal Screen, Long screen aspect ratio, Portrait Orientation, Normal, Day time, High Density, Finger-based touchscreen, Soft keyboard, No keyboard, Exposed navigation, Trackball navigation, Screen resolution 800x480, API Level 18

Change the configuration or create:

res/layout-ldltr-sw320dp-w320dp-h533dp-normal-long-port-notnight-hdpi-finger-keyssoft-nokeys-navexposed-trackball-800x480-v18/activity_main.xml

You can also click the 'Create New...' item in the configuration dropdown menu above.

截图如下:

enter image description here

这是项目目录: enter image description here

这个 Activity_Main.xml 非常简单,如下所示:

<?xml version="1.0" encoding="utf-8"?>

<android.support.v4.view.ViewPager
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/activity_main_pager"
android:layout_width="match_parent"
android:layout_height="match_parent" />

项目.properties 文件:

# Project target.
target=android-16

AndroidManifest 也很简单:

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

<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="16" />

<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme">
<activity android:name=".HelloAndroidActivity" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

</manifest>

我不确定我应该怎么做才能让它显示在图形编辑器上。

请帮忙,如果您需要任何额外信息,请告诉我。

最佳答案

清理你的项目并重启eclipse,我经常遇到这种情况

关于Android Maven archtype 项目布局在 ADT 图形编辑器上显示不正确,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19510350/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com