0

私はAndroidで複数のビューを処理するために複数のアクティビティを使用しました。ブログのどこかにあるのを見つけましたが、その中で迷子になっています。

2つのビューを切り替えることができません。私のコードは次のとおりです。

メインファイル

public class MultiViewActivity extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        Button next = (Button) findViewById(R.id.button1);  
        next.setOnClickListener(new View.OnClickListener() {  
         public void onClick(View view) {  
           Intent myIntent = new Intent(view.getContext(), MultiViews2.class);  
           startActivityForResult(myIntent, 0);  
         }  
       });
    }
}

xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <Button android:text="View 2"  
          android:id="@+id/button1"  
         android:layout_width="fill_parent"  
          android:layout_height="wrap_content">  
      </Button>  

</LinearLayout>

別の活動:

 public class MultiViews2 extends Activity {  
    /** Called when the activity is first created. */  
    @Override  
    public void onCreate(Bundle savedInstanceState) {  
      super.onCreate(savedInstanceState);  
      setContentView(R.layout.main2);  
      Button next = (Button) findViewById(R.id.button1);  
            next.setOnClickListener(new View.OnClickListener() {  
             public void onClick(View view) {  
               Intent myIntent = new Intent(view.getContext(), MultiViewActivity.class);  
               startActivityForResult(myIntent, 0);  
             }  
           });  
    }  
  }  

xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <Button android:text="View 1"  
          android:id="@+id/button2"  
         android:layout_width="fill_parent"  
          android:layout_height="wrap_content">  
      </Button>  

</LinearLayout>

マニフェスト:

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

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

    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name" >
        <activity
            android:name=".MultiViewActivity"
            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=".MultiViews2"></activity>
    </application>

</manifest>

button2をクリックするたびに、エラーが表示されますthe application has stopped unexpectedly
私が上で逃したものは何でも。私はAndroidプログラミングに非常に慣れていません。

4

2 に答える 2

2

MultiViews2 クラスの下の行の問題

Button next = (Button) findViewById(R.id.button2); 

それ以外の

Button next = (Button) findViewById(R.id.button1);  
于 2012-06-19T09:10:24.090 に答える
2

ビューが混乱していることを考えると、どちらが main.xml でどちらが main2.xml であるかはわかりません。ボタン 1 が参照されている場合、エラーはアクティビティの 1 つにあります。

 Button next = (Button) findViewById(R.id.button1); 

だから明らかにそれはあるべきです

  Button next = (Button) findViewById(R.id.button2); 

その変更を行うと、機能するはずです。理解しやすくするために、ビュー 1 をボタン 1 に対応するように変更し、2 も同様に変更します。そうしないと、このような問題がさらに発生します。

于 2012-06-19T09:12:41.813 に答える