0

アプリケーションに 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も再起動しようとしましたが、同じようには機能しません。

4

1 に答える 1

1

v7 appcompat ライブラリには、JAR ファイルに加えてリソースが含まれています。リソースにライブラリを含める手順は、次の場所にあります。

http://developer.android.com/tools/support-library/setup.html#add-library

リソースを使用してライブラリを追加する - Eclipse の使用

于 2013-10-17T16:56:56.497 に答える