安卓新手出现问题求解救

新手按书上打程序是出现Error: No resource found that matches the given name (at 'theme' with value '@android:style/ Theme.Dialog').这个故障 困了我好多天了 求解决

你不会多打了个空格吧

把代码贴出来看看。。。





图片说明

<?xml version="1.0" encoding="utf-8"?>
package="com.example.activitylifecycletest"
android:versionCode="1"
android:versionName="1.0" >

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

<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>
    <activity android:name=".NormalActivity" >