如何将int变量传递给另一个活动?

时间:2013-04-03 22:51:10

标签: java android

我正在尝试将一个int值传递给另一个活动,但我总是得到0.而且它不是0,我检查过。我试图从int变量brojPoena传递值。我试过这个:

Intent i = new Intent(Game.this, Popup_opis.class);
i.putExtra("brojPoenaPrimljeno", brojPoena);

在我的接收活动中:

Intent mIntent = getIntent(); 
        if(mIntent !=null) {
           int brojPoena = mIntent.getIntExtra("brojPoenaPrimljeno", 0);
        }
tvBrojPoena.setText("You won " + brojPoenaPrimljeno + " points");

我也尝试过这个:

Intent i = new Intent(getApplicationContext(), Popup_opis.class);
i.putExtra("brojPoenaPrimljeno", brojPoena);

在我的接收活动中:

Bundle extrasPoeni = getIntent().getExtras(); 
        if(extrasPoeni !=null) {
           brojPoenaPrimljeno = extras.getInt("brojPoena");
        }

我的接收活动:

public class Popup_opis extends Activity implements OnClickListener{

    TextView tvOpis,tvNaslov,tvBrojPoena;
    String poslatOpis, primljenOpis;
    int brojPoenaPrimljeno;
    Button OK;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        requestWindowFeature(Window.FEATURE_NO_TITLE);
        getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);

        setContentView(R.layout.popup_opis);

        Bundle extras = getIntent().getExtras(); 
        if(extras !=null) {
           primljenOpis = extras.getString("poslatOpis");
        }

        Bundle extrasPoeni = getIntent().getExtras(); 
        if(extrasPoeni !=null) {
           brojPoenaPrimljeno = extras.getInt("brojPoena");
        }

        initVariables();

    }

    private void initVariables() {


        Typeface tv = Typeface.createFromAsset(getAssets(), "ARIALN.TTF");
        OK = (Button) findViewById(R.id.bOK);
        tvOpis = (TextView) findViewById(R.id.tvOpis);
        tvBrojPoena = (TextView) findViewById(R.id.tvBrojPoena);
        tvBrojPoena.setTypeface(tv);
        tvNaslov = (TextView) findViewById(R.id.tvNaslov);
        tvNaslov.setTypeface(tv);
        tvOpis.setTypeface(tv);
        tvOpis.setText(primljenOpis);
        tvBrojPoena.setText("Osvojili ste " + brojPoenaPrimljeno + " poena u ovoj igri.");



    OK.setOnClickListener(new OnClickListener() {

        public void onClick(View v) {
            finish();

        }
    });
    }

    public void onClick(View v) {
        // TODO Auto-generated method stub

    }

}

1 个答案:

答案 0 :(得分:3)

此变量brojPoenaPrimljeno在哪里?你有这个

int brojPoena = mIntent.getIntExtra("brojPoenaPrimljeno", 0);

但在拨打setText()

时使用的是其他变量名称

您正尝试使用value而不是key来接收值。创建Intent

i.putExtra("brojPoenaPrimljeno", brojPoena);  // brojPoenaPrimljeno is the key be trying to use to 

尝试

 brojPoenaPrimljeno = getIntent().getIntExtra("brojPoenaPrimljeno", 0);

此外,这是次要的,不是你的问题,但效率低下,可能会导致问题。你在两个不同的地方获得了“意图”。这里

Bundle extras = getIntent().getExtras();

在这里

Bundle extrasPoeni = getIntent().getExtras(); 

处理来自不同Activities

的意图

如果这有帮助,如果我有Activity来自多个地方的Intents,我会使用String extra告诉收件人Activity来自哪里。例如:

Intent intent = new Intent(SendingActivity.this,ReceivingActivity.class); intent.putExtra(“source”,“activityName”); //这将用于了解意图的来源

//receiving activity
Intent recIntent = getIntent();
if (recIntent.getStringExtra("source") != null)
{
     String source = recIntent.getStringExtra("source");
    if (source.equals("activityName"))
    {
         // do stuff
    }
    if (source.equals("differentActivityName"))
    {
         // do other stuff
    }
}