<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.paad.todolist"
android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".TodoList"
android:label="@string/app_name"
android:style="@style/ToDoTheme">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-sdk android:minSdkVersion="6" />
</manifest>
윗 부분에서 7번째 줄에서
No resource identifier found for attribute 'style' in packge 'android'
이 애러가 뜨는데 도통 어떤 애러인지 모르겠습니다.
좀 도와 주십시오....
style 파일이 내용중에 ToDoTheme 가 없으면 에러가 나올겁니다.