• findviewbyid > (EditText)findViewById(RidInputHeight)
  • (EditText)findViewById(RidInputHeight)

    免费下载 下载该文档 文档格式:DOC   更新时间:2010-04-09   下载次数:0   点击次数:2
    文档基本属性
    文档语言:Traditional Chinese
    文档格式:doc
    文档作者:chenaho
    关键词:
    主题:
    备注:
    点击这里显示更多文档属性
    //2-1. ItemDeclare
    private EditText height;
    private EditText weight;
    private Button submit;
    private TextView result;
    private TextView suggest;
    // 2-2_Binding
    height = (EditText)findViewById(R.id.Input_Height);
    weight = (EditText)findViewById(R.id.Input_Weight);
    submit = (Button)findViewById(R.id.Btn_submit);
    result =(TextView)findViewById(R.id.txt_Result);
    suggest =(TextView)findViewById(R.id.txt_suggest);
    //02-3_Set Listener for Button
    submit.setOnClickListener(new View.OnClickListener() {
    public void onClick(View v) {
    // put your code here
    //2-4




    }
    });
    //02-4 BMI calculate
    DecimalFormat nf = new DecimalFormat("0.00");
    double h = Double.parseDouble(height.getText().toString())/100;
    double w = Double.parseDouble(weight.getText().toString());
    double BMI = w / (h * w);
    result.setText("Your BMI is "+nf.format(BMI));
    //Give health advice
    if(BMI>25){
    suggest.setText("您太重了,需要减肥");
    }else if(BMI New -> Android Activity
    // name "Report"
    //05-2
    // 参考main.xml ,建立新的report.xml , 做为此Activity的LayOut
    // 底下为report.xml 的描述
    //05-3
    // 在Report Activity当中加入
    setContentView(R.layout.report);
    //05-4

    下一页

  • 下载地址 (推荐使用迅雷下载地址,速度快,支持断点续传)
  • 免费下载 DOC格式下载
  • 您可能感兴趣的
  • findviewwithtag  viewappleid  movieviewid  viewid  view.aspid  findbyexample  findbycriteria  findbyproperty  findbynamedparam  findbyvalue