gpt4 book ai didi

java - Android 意外错误

转载 作者:行者123 更新时间:2023-12-02 08:00:36 25 4
gpt4 key购买 nike

我是 Android 初学者,我需要一些提示和帮助。我正在使用以下代码

   public class WifiHotSpotActivity extends Activity {

private Button adnew = null;


@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
init();

adnew = (Button) findViewById(R.id.addNewBtn);

adnew.setOnClickListener(new View.OnClickListener()
{
public void onClick(View v)
{
Intent myIntent = new Intent(v.getContext(), addNew.class);
startActivityForResult(myIntent, 0);
}
});
}

我收到的错误是

 android.content.ActivityNotFoundException: Unable to find explicit activity class {com.kahaf.wifiHotSpot/com.kahaf.wifiHotSpot.addNew}; have you declared this activity in your AndroidManifest.xml?

如果有人能告诉我问题是什么。

最佳答案

您应该在 list 文件中定义您的 Activity 。以下是添加该 Activity 后 list 的外观示例:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.foo.test"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk android:minSdkVersion="7" />

<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
>
<activity
android:label="@string/app_name"
android:name=".FooActivity"

android:configChanges="keyboardHidden">"
<intent-filter >
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

<activity
android:name=".YourActivityNameHere"
android:label="@string/app_name"
>
</activity>

<activity
android:name=".AnotherActivity"
android:label="@string/app_name"
>
</activity>
</application>

</manifest>

关于java - Android 意外错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8970415/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com