0

少し問題があります。アクティビティが 3 つあります。アクティビティ ListClass.java

public class ListClass extends Activity {

......


listView.setOnItemClickListener(new AdapterView.OnItemClickListener() {

        @Override
        public void onItemClick(AdapterView<?> parent, View view,
                int position, long id) {

            onItemClick1(parent, view, position, id);

        }

    });

}

public void onItemClick1(AdapterView<?> parent, View view, int position,
        long id) {

    String name = (String) parent.getItemAtPosition(position);
    String address = (String) listAddress.get(position);
    int status = (int) listStatus.get(position);
    double lat = (double) listLat.get(position);
    double lng = (double) listLng.get(position);
    String serialNumber = (String) listSerialNumber.get(position);

    getIntent().putExtra("name", name);
    getIntent().putExtra("address", address);
    getIntent().putExtra("status", status);
    getIntent().putExtra("latitude", lat);
    getIntent().putExtra("longitude", lng);
    getIntent().putExtra("serialNumber", serialNumber);

    startActivity(getIntent());

}

public Intent getIntent() {
    Intent intent = new Intent(ListClass.this, ClassB.class);
    return intent;
}

ご覧のとおり、 ClassB.java で使用する putExtra 値を次のように指定します。

public class ClassB extends Activity {

TextView textViewTitle;
TextView textView2;
TextView textViewInfo;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.charge_box);
    this.textViewTitle = (TextView) findViewById(R.id.charge_box__textView1);
    this.textView2 = (TextView) findViewById(R.id.charge_box__textView2);
    this.textViewInfo = (TextView) findViewById(R.id.charge_box__textView3);
    getActionBar().setDisplayHomeAsUpEnabled(true);
    Bundle bundle = getIntent().getExtras();
    String name = bundle.getString("name");
        String address = bundle.getString("address");
        int status = bundle.getInt("status");
        textViewTitle.setText(name);
        textViewInfo.setText(address + " " + status);

    }
}

ここまでは順調ですね!しかし、MainClass.java という別のアクティビティから ActivityB を開始する必要があります。

    Intent intent = new Intent(MainActivity.this,
                    ClassB.class);

            startActivity(intent);

問題は、Bundle bundle = getIntent().getExtras();MainClass の Intent が ListClass の Intent と異なるため、ClassB が使用するときに「エクストラ」が見つからないことです! どのようにできるのか??どのインテントを使用するかを決めることはできますか? ありがとう!

EDIT:@skygeek OK私はそれに取り組んでいますが、余分な値が変更された場合、どうすれば静的変数を作成できますか?

public void onItemClick1(AdapterView<?> parent, View view, int position,
        long id) {

    String name = (String) parent.getItemAtPosition(position);
    String address = (String) listAddress.get(position);
    int status = (int) listStatus.get(position);
    double lat = (double) listLat.get(position);
    double lng = (double) listLng.get(position);
    String serialNumber = (String) listSerialNumber.get(position);

    Intent intent = new Intent(ListClass.this, ChargeBoxInfoActivity.class);
    intent.putExtra("name", name);
    intent.putExtra("address", address);
    intent.putExtra("status", status);
    intent.putExtra("latitude", lat);
    intent.putExtra("longitude", lng);
    intent.putExtra("serialNumber", serialNumber);
    startActivity(intent);
}
4

4 に答える 4

0

これは間違っています:

getIntent().putExtra("name", name);
getIntent().putExtra("address", address);
getIntent().putExtra("status", status);
getIntent().putExtra("latitude", lat);
getIntent().putExtra("longitude", lng);
getIntent().putExtra("serialNumber", serialNumber);
startActivity(getIntent());

}

public Intent getIntent() {
Intent intent = new Intent(ListClass.this, ClassB.class);
return intent;  

}

各関数呼び出し getIntent() の後に新しいインテントを作成します...これを試してください:

Intent intent = new Intent(ListClass.this, ClassB.class);
intent.putExtra("name", name);
intent.putExtra("address", address);
intent.putExtra("status", status);
intent.putExtra("latitude", lat);
intent.putExtra("longitude", lng);
intent.putExtra("serialNumber", serialNumber);
startActivity(intent);
于 2013-06-20T10:20:35.133 に答える
0

わかりました...これを試してください:

try{
Bundle bundle = getIntent().getExtras();
String name = bundle.getString("name");
    String address = bundle.getString("address");
    int status = bundle.getInt("status");
    textViewTitle.setText(name);
    textViewInfo.setText(address + " " + status);
}}catch (Exception ignored) {
}
于 2013-06-20T11:01:26.130 に答える