1

こんにちは、私はこのサイトが初めてで、Androidプログラミングも初めてです...

ボタンをクリックして次のアクティビティに進むたびに、強制終了します。バンドルをコメントアウトしたので、アクティビティが機能することはわかっています..誰かが私が間違っていることを知っていますか?

// click button on 1st activity

    Intent iCreate = new 
Intent("silver.asw.charactersheet.CREATECHARACTER");
        iCreate.putExtra("cname",item);
        startActivity(iCreate);

// on item select
item = spin.getItemAtPosition(position).toString();
// spinner is being populated by sql database


// 2nd activity
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.character);
    TextView character = (TextView)findViewById(R.id.tvViewCharacter);

    Bundle b = this.getIntent().getExtras();
    String item = b.getString("cname");
    character.setText(item);
}

また、Android アプリの ide である AIDE を使用しているため、警告が表示されないか、logcat を確認できません。(私は家を出る前に自分のコンピューターでこのコードをテストしましたが、同じ問題です。)

4

5 に答える 5

0

2番目のアクティビティでは、

String item = getIntent().getStringExtra("cname");

それ以外の

Bundle b = this.getIntent().getExtras();
// b is null, because you use intent.putExtra(string, string). you should     
// use above method to get the data.
String item = b.getString("cname");

これにより、NULLPointerExceptionが発生します。

于 2012-04-26T03:28:27.623 に答える
0
 Bundle b = this.getIntent().getExtras();

最初のアクティビティで上記の行を以下に置き換えます

Bundle bundle = new Bundle();



Bundle b = getIntent().getExtras();//from 2 activity you can call as it no need to have this
于 2012-04-26T03:16:29.173 に答える
0

このコードを使用した場合

    Intent iCreate = new Intent("silver.asw.charactersheet.CREATECHARACTER");
    iCreate.putExtra("cname",item);
    startActivity(iCreate);

2 番目のアクティビティでは、このように使用できます。

// 2nd activity
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.character);
TextView character = (TextView)findViewById(R.id.tvViewCharacter);

String item = getIntent().getExtras()..getString("cname");
character.setText(item);
}

または、このように使用できる別の方法、

    Intent iCreate = new Intent("silver.asw.charactersheet.CREATECHARACTER");
    Bundle b=new Bundle();
    b.putString("cname", item);
    iCreate.putExtras(bundle);
    startActivity(iCreate);

2 番目のアクティビティで

/ 2nd activity
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.character);
TextView character = (TextView)findViewById(R.id.tvViewCharacter);
Bundle b = getIntent().getExtras();
String item = b.getString("cname");
character.setText(item);
}
于 2012-04-26T05:03:36.127 に答える
0

you are not putting any bundle in intent but trying receiving in second activity.use this way:

// 1nd activity
item = spin.getItemAtPosition(position).toString();
Bundle bundle = new Bundle();
bundle.putString("cname", item);
iCreate.putExtras(bundle);

// 2nd activity

 Bundle bundle = this.getIntent().getExtras();
 String name = bundle.getString("cname");
于 2012-04-26T03:06:15.503 に答える
0

I am not sure where your onClick function is but try something like this Ex.

initialize button

Button b = (Button) findViewById(R.id.button1);
    b.setOnClickListener(new OnClickListener() {
        //start activity
        public void onClick(View v) {
            startActivity(new Intent(Main.this, StartPage.class));

        }}
于 2012-04-26T03:08:04.217 に答える