0

我有一个 Activity 正在运行,当我单击一个按钮时,我希望弹出下一个 Activity。它应该很简单,但我不知道这里发生了什么。我不明白为什么我会收到这个错误。我查看了其他人的错误并尝试修复它,但没有任何效果。当我匹配动作名称并在 java 中调用它时,我仍然会收到此错误。我不确定我做错了什么。

这是我的清单:

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

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

<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=".Recorder" 
        android:theme="@style/AppBaseTheme"
        android:label="@string/app_name" >
        <action android:name="com.jordan.dictation.RECORDER" />
        <category android:name="android.intent.category.DEFAULT" />
    </activity>
</application>

这是我的第一个活动的 Javacode,假设在单击按钮时调用另一个活动“Recorder.java”:

    public class MainActivity extends Activity {

Button bn_Add;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    bn_Add = (Button) findViewById(R.id.button_nav_add_recording);
    bn_Add.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            // TODO start other activity
            try
            {
                // this is the code that I am surrounding in the try/catch block
                Intent openRecorder = new Intent("com.jordan.dictation.RECORDER");
                startActivity(openRecorder);
            }
            catch (Exception e)
            {
                // this is the line of code that sends a real error message to the log
                Log.e("ERROR", "ERROR IN CODE: " + e.toString());

                // this is the line that prints out the location in
                // the code where the error occurred.
                e.printStackTrace();
            }


        }
    });
4

2 回答 2

1

试试这个

<activity android:name=".Recorder" 
    android:theme="@style/AppBaseTheme"
    android:label="@string/app_name" >
  <intent-filter>
    <action android:name="com.jordan.dication.RECORDER" />
    <category android:name="android.intent.category.DEFAULT" />
  </intent-filter>
</activity>

您没有在 mainfest 文件中使用意图过滤器

于 2013-02-14T07:55:09.500 回答
0

试试看:

Intent intent = new Intent(MainActivity.this, Recorder.class);
startActivity(intent);

代替

Intent openRecorder = new Intent("com.jordan.dictation.RECORDER");
startActivity(openRecorder);

清理并构建您的代码以确保!

于 2013-02-14T08:31:20.487 回答