当前位置:编程学习 > JAVA >>

Android的问题,帮帮小弟Activity/Bundle cannot be resolved to a type怎么解决

Result.java  代码如下
package com.android.weight;
/* import相关class*/
import java.text.DecimalFormat;
import java.text.NumberFormat;

public class Result extends Activity{
/** Called when the activity is first created*/
@Override
public void onCreate(Bundle savedInstanceState){
  super.onCreate(savedInstanceState);
  /*加载main.xml Layout*/
  setContentView(R.layout.result);
  /*取得Intent中的Bundle对象*/
  Bundle bunde = this.getIntent().getExtras();
  /*取得Bundle对象中的数据*/
  String sex = bunde.getString("sex");
  double height = bunde.getDouble("height");
  /*判断性别*/
  String sexText="";
  if(sex.equals("M")){
   sexText="男性";
  }else{
   sexText="女性";
  }
  /*取得标准体重*/
  String weight=this.getWeight(sex,height);
  /*设定输出文字*/
  TextView tv1=(TextView) findViewById(R.id.text1);
  tv1.setText("你是一位"+sexText+"\n你的身高是"+height+
    "公分\n你的标准体重是"+weight+"公斤");
}
/*四舍五入的method*/
private String format(double num)
{
  NumberFormat formatter = new DecimalFormat("0.00");
  String s=formatter.format(num);
  return s;
}
/*以findViewById()取得Button对象,onClickListener*/
private String getWeight(String sex,double height)
{
  String weight="";
  if(sex.equals("M"))
  {
   weight=format((height-80)*0.7);
  }else
  {
   weight=format((height-70)*0.6);
  }
  return weight;
}
}

问题图片: --------------------编程问答-------------------- import android.os.Bundle; --------------------编程问答-------------------- lz,对你的问题我表示很有压力,这么简单的问题,你还要问。
import android.os.Bundle; 
补充:Java ,  Eclipse
CopyRight © 2012 站长网 编程知识问答 www.zzzyk.com All Rights Reserved
部份技术文章来自网络,