1

これは私のメインページのコードです:

package com.example.splasher;
import android.net.Uri;
import android.os.Bundle;
import android.app.Activity;
import android.content.ActivityNotFoundException;
import android.content.Intent;
import android.view.View;
import android.view.View.OnFocusChangeListener;
import android.view.Window;
import android.view.WindowManager;
import android.widget.Button;
import android.widget.EditText;

public class MainActivity extends Activity {
public static String text;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    requestWindowFeature(Window.FEATURE_NO_TITLE);
    // hide statusbar of Android
    // could also be done later
    getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
    WindowManager.LayoutParams.FLAG_FULLSCREEN);
    setContentView(R.layout.activity_main);
    Button button = (Button) findViewById(R.id.button1);
    button.setOnClickListener(new View.OnClickListener() {
        public void onClick(View v) {
            // Perform action on click
        EditText field= (EditText) findViewById (R.id.editText1);
        field.setOnFocusChangeListener(new OnFocusChangeListener(){
            public void onFocusChange(View v, boolean hasFocus){
                if (hasFocus)    ((EditText)v).selectAll();
            }
        });
        text=field.getText().toString();
        try{
            startActivity(new Intent("com.example.splasher.View"));
            }
       catch(ActivityNotFoundException e){
       }
      }
     });
}
}

これは私の呼び出されたアクティビティのコードです:

package com.example.splasher;

import android.os.Bundle;
import android.app.Activity;
import android.view.Window;
import android.view.WindowManager;
import android.widget.TextView;

public class View extends Activity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        requestWindowFeature(Window.FEATURE_NO_TITLE);
        // hide statusbar of Android
        // could also be done later
    //  getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
    //          WindowManager.LayoutParams.FLAG_FULLSCREEN);
        setContentView(R.layout.view);
    //  TextView textview=(TextView) findViewById (R.id.textView1); 
    //  textview.setText(MainActivity.text);
        }}

そして、これは私のマニフェストです:

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

    <uses-sdk
        android:minSdkVersion="8"
        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=".View"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="com.example.splasher.View" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

なぜこのエラーが発生するのかわかりません。何か案は?名前はすべて同じで、大文字と小文字が同じです。それらはすべてマニフェストにも記載されています。

4

4 に答える 4

1

マニフェストで、アクティビティ アクションを大文字で入力します。

< action android:name="COM.EXAMPLE.SPLASHER.VIEW" / >

これは、メイン アクティビティを除くすべてのアクティビティに対して行われます。

于 2013-03-16T16:59:44.820 に答える
0

MainActivityでstartActivity呼び出しを置き換えてみてください。MainActivity.this.startActivityスコープトラブルがあると思います。

于 2013-03-16T17:07:06.547 に答える
0

MainActivity.this.startActivity(new Intent(MainActivity.this, Views.class));'s' を含む Views クラスがあります。

于 2013-03-16T22:00:27.153 に答える
0

View アクティビティに適用したインテント フィルターは必要ありません。MainActivity に 1 つのインテント フィルターを保持するだけです。

start activity の行コードを次のように置き換えます。

startActivity(new Intent(MainActivity.this,View.class));
于 2013-03-16T16:49:15.107 に答える