<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.example.sudoku"
android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".Sudoku"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
//error here->// <activity android:name=".about"
android:label="@string/about_title">
</activity>
</application>
<uses-sdk android:minSdkVersion="8" />
</manifest>
//问题是,当我开发一个数独游戏时,我在定义活动时遇到错误(.about)。 上面我写了代码和发生错误的地方。请帮助//
答案 0 :(得分:3)
我没有看到任何奇怪的事。可能是您尝试".About"
而不是".about
“吗?
答案 1 :(得分:2)
要检查的一些事项:
About
以大写字母开头,正如Nanne所说。About
应位于org.example.sudoku
包中。About
应扩展Activity
。另请注意,而不是:
<activity android:name=".About"
android:label="@string/about_title">
</activity>
你可以这样做:
<activity android:name=".About"
android:label="@string/about_title"/>
答案 2 :(得分:0)
试试这段代码:
<activity
android:label="@string/about_title"
android:name=".About"
android:theme="@android:style/Theme.Dialog"
/>