0

あるアクティビティから別のアクティビティにデータを送信しようとしていますが、うまく機能していますが、動作したくありません。問題 1 - 物事が混乱している。次のアクティビティでは、listitem の一部が正しくない textView になり、一部が正しい textview になります。問題 2- 新しいアクティビティで 1 つのアイテムしかリストできませんが、複数のリストアイテムを送信できるようにしたいと考えています。問題は、ここで行っているように、異なるタイプの putExtra リクエストを同じ場所に組み合わせることにあると思います。

.putExtra("inputPrice",(CharSequence)pick) .putStringArrayListExtra("list", listItems)

アリの助けをいただければ幸いです。

次のアクティビティへのデータの送信

final TextView username =(TextView)findViewById(R.id.resultTextView);
String uname = username.getText().toString();

final TextView uplane =(TextView)findViewById(R.id.inputPrice);                     
String pick = uplane.getText().toString();

final TextView daplane =(TextView)findViewById(R.id.date);                  
String watch = daplane.getText().toString();

 startActivity(new Intent(MenuView1Activity.this,RecordCheckActivity.class)
.putExtra("date",(CharSequence)watch)
.putExtra("Card Number",(CharSequence)uname)
.putExtra("inputPrice",(CharSequence)pick)
.putStringArrayListExtra("list", listItems)
);
finish();

これは次の活動です

        Intent is = getIntent();
    if (is.getCharSequenceExtra("Card Number") != null) {
        final TextView setmsg = (TextView)findViewById(R.id.saleRccn);
        setmsg.setText(is.getCharSequenceExtra("Card Number"));             
    }
        Intent it = getIntent();
    if (it.getCharSequenceExtra("date") != null) {
        final TextView setmsg = (TextView)findViewById(R.id.saleTime);
        setmsg.setText(it.getCharSequenceExtra("date"));                
    }
    Intent id1 = getIntent();
    if (id1.getCharSequenceExtra("inputPrice") != null) {
        final TextView setmsg = (TextView)findViewById(R.id.saleName);
        setmsg.setText(id1.getCharSequenceExtra("inputPrice"));
    }
    ArrayList<String> al= new ArrayList<String>();
    al = getIntent().getExtras().getStringArrayList("list");
    saleNotes= (TextView) findViewById(R.id.saleNotes); 
    saleNotes.setText(al.get(0));
4

2 に答える 2

2

さて、いくつかのこと:

まず、文字列を としてキャストする必要はありませんCharSequence

第二に、

インテントを定義し、エクストラを追加してから、以下のように startActivity を呼び出します。

Intent intent = new Intent(MenuView1Activity.this,RecordCheckActivity.class);
intent.putExtra("date", watch);
startActivity(intent);

3 番目に、インテントを取得するときに、最初に以下のようにバンドルを作成します。

Bundle extras = getIntent().getExtras();
String date = extras.getString("date");

編集:

配列リスト全体を 1 つの文字列に変換し、テキストビューに追加する方法を次に示します。

String listString = "";

for (String s : al)
{
    listString += s + "\t"; // use " " for space, "\n" for new line instead of "\t"
}

System.out.println(listString);
saleNotes.setText(listString);

お役に立てれば!

于 2013-06-07T07:12:40.363 に答える
1

これを試してください。CharSequence文字列値を入れるだけでは使用しないでください

startActivity(new Intent(MenuView1Activity.this,RecordCheckActivity.class)
.putExtra("date",watch)
.putExtra("Card Number",uname)
.putExtra("inputPrice",pick)
.putStringArrayListExtra("list", listItems)
);

そしてこうなって

  Intent is = getIntent();
if (is.getCharSequenceExtra("Card Number") != null) {
    final TextView setmsg = (TextView)findViewById(R.id.saleRccn);
    setmsg.setText(is.getStringExtra("Card Number"));             
}
于 2013-06-07T07:15:21.263 に答える