アプリケーションに ActionBar V7 を含めようとしています。AndroidManifest.xml に入れました
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
values/style.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="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>
値-v11
<?xml version="1.0"?>
-<resources>
<!-- Base application theme for API 11+. This theme completely replaces AppBaseTheme from res/values/styles.xml on API 11+ devices. -->
-<style parent="Theme.AppCompat.Light" name="AppBaseTheme">
<!-- API 11 theme customizations can go here. -->
</style></resources>
そしてvalues-v14で
<resources>
<!--
Base application theme for API 14+. This theme completely replaces
AppBaseTheme from BOTH res/values/styles.xml and
res/values-v11/styles.xml on API 14+ devices.
-->
<style name="AppBaseTheme" parent="Theme.AppCompat.Light">
<!-- API 14 theme customizations can go here. -->
</style>
</resources>
私が入れたアクティビティで
import android.support.v7.app.ActionBarActivity;
public class MainActivity extends ActionBarActivity
実行すると、プロジェクトにエラーがあることがわかります。正確にはエラーはすべての style.xml にあり、エラーは「エラー: 項目の親の取得中にエラーが発生しました: 指定された名前 'Theme.AppCompat.Light' に一致するリソースが見つかりませんでした。」なぜこのエラーが発生し、どのように修正するのですか? ライブラリ android-support-v7-appcompat.jar を /libs に配置し、右クリックして Build Patch に追加します。Eclipseも再起動しようとしましたが、同じようには機能しません。