基于Android计算器功能的实现.doc
2021-10-01 09:08:24 350KB 文档
一个简单的bmi身高体重计算器,须要的朋友可以下载
2021-09-17 16:29:35 501KB Android BMI 身高体重 Android计算器
1
Android计算器 用Basic 4 Android(B4A)编写的android计算器应用程序
2021-09-16 14:31:59 791KB Java
1
package ymq.demo03; import android.app.Activity; import android.os.Bundle; import android.view.*; import android.widget.*; public class demo03 extends Activity { /** Called when the activity is first created. */ String str=""; EditText et; int c=0,flag=0; double b=0.0,g=0.0,f=0.0; View vi; public boolean onCreateOptionsMenu(Menu menu) { // TODO Auto-generated method stub menu.add(0, 1, 1, "退出"); return super.onCreateOptionsMenu(menu); } @Override public boolean onOptionsItemSelected(MenuItem item) { // TODO Auto-generated method stub if(item.getItemId()==1){finish();} return super.onOptionsItemSelected(item); } //计算方法 public double calculater(){ switch(c){ case 0:f=g;break; case 1:f=b+g;break; case 2:f=b-g;break; case 3:f=b*g;break; case 4:f=b/g;break; } b=f; c=0; return f; } @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); //获得按键 final Button number[]=new Button[10]; final Button fuhao[]=new Button[11]; fuhao[0]=(Button)findViewById(R.id.button01); fuhao[1]=(Button)findViewById(R.id.button02); fuhao[2]=(Button)findViewById(R.id.button03); fuhao[3]=(Button)findViewById(R.id.button04); fuhao[4]=(Button)findViewById(R.id.button05); fuhao[5]=(Button)findViewById(R.id.button06); fuhao[6]=(Button)findViewById(R.id.buttonce); fuhao[7]=(Button)findViewById(R.id.buttonc); fuhao[8]=(Button)findViewById(R.id.zheng); fuhao[9]=(Button)findViewById(R.id.kaifang); fuhao[10]=(Button)findViewById(R.id.pingfang); number[0]=(Button)findViewById(R.id.button0); number[1]=(Button)findViewById(R.id.button1); number[2]=(Button)findViewById(R.id.button2); number[3]=(Button)findViewById(R.id.button3); number[4]=(Button)findViewById(R.id.button4); number[5]=(Button)findViewById(R.id.button5); number[6]=(Button)findViewById(R.id.button6); number[7]=(Butto
2021-08-31 17:23:03 4.75MB Android
1
该demo实现了HarmonyOS可搭载在电视、车载设备、Pad、手机、手表的计算器,HarmonyOS开发工具刚推出不久,debug用起来着实难受,因此也做了一个Android版本,用HarmonyOS版本有问题的可以打开Android版本的看看相应的bug是如何处理的,如果代码相同也处理不了,那就是测试的时候没有测试到这样的一个bug,详情请看:https://blog.csdn.net/baidu_41616022/article/details/118275330
2021-06-27 20:13:57 19.2MB HarmonyOS Android 计算器 kotlin
1
主要为大家详细介绍了android简易计算器的制作,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
2021-06-24 22:51:34 102KB android 计算器
1
比较全套的一个Android期末报告,包含了源码,论文,apk文件,可以给做Android项目的同学作为一个简单的参考
2021-06-24 13:06:21 24.76MB Android android studio 简易计算器
1
Android计算器模板
2021-06-24 11:50:12 148KB Java
1
超级清爽android计算器界面源码
1
自己写的一个简易的计算器,功能测试通过,基于android studio开发的,新手练习项目。
2021-06-21 22:08:06 18.95MB 计算器 android
1