我是Java Android开发的初学者。我正在使用Eclipse SDK 3.6.1版本。我正在尝试做这件事:在第一类(layout - main.xml)是按钮“hello”,它调用新类(layout - second.xml),在这个类中是按钮“hello2”,它calss新类。我不能这样做因为当我按下第一个按钮“你好”我收到这条消息“应用程序(xxxx)意外停止。请再试一次”。如何解决这个问题。我认为问题出现在AndroidManifest.xml中:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.kodinis_raktas"
android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".veiksmas"
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=".second" >
<intent-filter>
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name=".lock"></activity>
<intent-filter>
</intent-filter>
</application>
<uses-permission android:name="android.permission.SEND_SMS">
</uses-permission>
<uses-permission android:name="android.permission.RECEIVE_SMS">
</uses-permission>
<uses-sdk android:minSdkVersion="3" />
</manifest>
答案 0 :(得分:1)
在Eclipse中使用adb logcat
,DDMS或DDMS透视图来检查LogCat并查看与您的错误相关联的堆栈跟踪。这将为您提供更多信息。
我建议您删除<intent-filter>
和.second
中的.lock
元素,因为您没有使用它们。如果您的错误来自于尝试启动.second
,则仅存在类别<intent-filter>
可能会阻止该活动启动。
答案 1 :(得分:0)
在我对android的有限经验中,我认为你需要在activity android:name=".second"
android:label="@string/app_name">