Guest User

Untitled

a guest
Feb 20th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. Intent intent = new Intent(TrackingActivity.this, StatActivity.class);
  2. intent.putExtra("yzValue" , getyzVal());
  3. startActivity(intent);
  4.  
  5. Intent intent = getIntent();
  6. baValue = (TextView) findViewById(R.id.baValue);
  7. String baVal = intent.getStringExtra("yzValue") ;
  8. maxX.setText(String.valueOf(baVal));
Add Comment
Please, Sign In to add comment