Advertisement
Guest User

Untitled

a guest
Aug 21st, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. private TextView tvHeight,tvWeight,tvBmi,tvResult;
  2. private double height,weight,bmi;
  3. private int photoId;
  4.  
  5. tvHeight=findViewById(R.id.tvHeight);
  6. tvWeight=findViewById(R.id.tvWeight);
  7. tvBmi=findViewById(R.id.tvBmi);
  8. tvResult=findViewById(R.id.tvResult);
  9.  
  10. Intent intent=getIntent();
  11. Bundle bundle=intent.getExtras();
  12. height=bundle.getDouble("height");
  13. weight=bundle.getDouble("weight");
  14. getResult();//計算與實做方法
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement