gpt4 book ai didi

java - 无法使用 android :Theme. AppCompat.Light

转载 作者:行者123 更新时间:2023-11-29 05:08:07 25 4
gpt4 key购买 nike

我已经准备好这里几乎所有的问题,回答或不回答,并按照所有步骤操作,但无济于事。我正在使用 Eclipse 来使用 Google App Engine。这就是我所做的:

-将 android-support-v4.jar 添加到我的 libs 文件夹- 将 android-support-v7-appcompat.jar 添加到我的 libs 文件夹-右键单击项目>>属性>>库选项卡;单击“添加 JAR...”>> 浏览到 libs 文件夹并选择这两个 JAR-选择“订购和导出”选项卡;检查了这两个 JAR;未选中“Android 依赖项”;点击“确定”

这是我的 styles.xml 文件:

<resources>

<!--
Base application theme, dependent on API level. This theme is replaced
by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
-->
<style name="AppBaseTheme" parent="android:Theme.AppCompat.Light">
<!--
Theme customizations available in newer API levels can go in
res/values-vXX/styles.xml, while customizations related to
backward-compatibility can go here.
-->
</style>

<!-- Application theme. -->
<style name="AppTheme" parent="AppBaseTheme">
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
</style>

</resources>

这是我的 AndroidManifest.xml:

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

<uses-sdk
android:minSdkVersion="11"
android:targetSdkVersion="19" />

<uses-permission android:name="android.permission.INTERNET" />

<permission
android:name="com.appengine.permission.C2D_MESSAGE"
android:protectionLevel="signature" />

<uses-permission android:name="com.appengine.permission.C2D_MESSAGE" />
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<uses-permission android:name="android.permission.USE_CREDENTIALS" />

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

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

<service android:name=".GCMIntentService" />

<receiver
android:name="com.google.android.gcm.GCMBroadcastReceiver"
android:permission="com.google.android.c2dm.permission.SEND" >
<intent-filter>
<action android:name="com.google.android.c2dm.intent.RECEIVE" />

<category android:name="com.appengine" />
</intent-filter>
<intent-filter>
<action android:name="com.google.android.c2dm.intent.REGISTRATION" />

<category android:name="com.appengine" />
</intent-filter>
</receiver>

<activity
android:name=".RegisterActivity"
android:launchMode="singleTop" />
<activity
android:name=".SendData"
android:launchMode="singleTop"
android:value="android.support.v7.app.ActionBarActivity" />
</application>

当我尝试运行该项目(USB 连接的 Galaxy S4,当前运行 4.4.2)时,我得到:

G:\workspace\appengine\res\values\styles.xml:7: error: Error retrieving parent for item: No resource found that matches the given name 'android:Theme.AppCompat.Light'.

我已经为此奋斗了几天,有谁能救我免于放弃开发者的生命吗?

最佳答案

我从未使用 android 命名空间引用任何主题。

通常是

<style name="AppTheme" parent="@style/Theme.AppCompat.Light">

或者只是:

<style name="AppTheme" parent="Theme.AppCompat.Light">

关于java - 无法使用 android :Theme. AppCompat.Light,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29689263/

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