0

だからここに私が抱えている別の基本的な問題があります...私が別のアクティビティに文字列を渡そうとすると、私のアプリケーションがクラッシュします。私はいくつかの方法を試しましたが、無駄でした。これがコードです

Main.javaという名前のメインアクティビティ

package com.ammad.test;

import android.os.Bundle;
import android.os.Handler;
import android.app.Activity;
import android.content.Intent;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;

public class Main extends Activity {

    TextView tv;
    Button b1;


    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        tv = (TextView) findViewById(R.id.tvShow);
        b1 = (Button) findViewById(R.id.bt1);
        b1.setOnClickListener(new View.OnClickListener() {

            public void onClick(View arg0) {
                // TODO Auto-generated method stub
                Bundle basket = new Bundle();
                String myScore = "testing";
                basket.putString("key", myScore);
                Intent intent = new Intent(Main.this, Second.class);
                intent.putExtras(basket);
                startActivity(intent);


            }
        });


    }
}

Second.javaという名前のデータが渡される2番目のクラス

package com.ammad.test;

import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;

public class Second extends Activity{

    TextView tv;
    String getScore;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        // TODO Auto-generated method stub
        super.onCreate(savedInstanceState);
        setContentView(R.layout.second);
        tv= (TextView) findViewById(R.id.tvRes);
        Bundle gotBasket = getIntent().getExtras();
        getScore = gotBasket.getString("key");
        tv.setText(getScore);
    }

}

そして最後にマニフェストファイル:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.ammad.test"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="15" />

    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name=".Main"
            android:label="@string/title_activity_main" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name=".Sec"
            android:label="@string/title_activity_main" >
            <intent-filter>
                <action android:name="com.ammad.test.SECS" />
            </intent-filter>
        </activity>
    </application>

</manifest>
4

1 に答える 1

2

予想どおり、.Secではなく.Secとして、マニフェストで2番目のアクティビティが間違っていると宣言されているようです。インテントが無効だったため、ログに例外が表示されている可能性があります。

于 2012-07-22T21:03:15.687 に答える