2019独角兽企业重金招聘Python工程师标准>>>
1、建立显示框:
a、编辑布局文件activity_main.xml
b、设置输入框的样式,例如颜色、边框、角。在res下新建drawable文件夹,新建white_bg.xml文件,编辑
c、"@color/white"会报错且无法识别,原因是没有color.xml文件,颜色只能用RGB表示,无法识别white所表示的颜色。在values下新建color.xml文件,设置颜色
#FFFFFF
#FF0000
#000000
d、设置主题样式,不显式标题,主题设置为黑色。编辑AndroidMainfest.xml文件
2、设置按钮布局
修改上述activity_main.xml文件
3、修改按钮样式,设置点击颜色
在drawable下创建以下文件
ashend_bg.xml
gray_bg.xml
orange_bg.xml
white_bg.xml
orange_selector.xml
white_selector.xml
修改上述activity_main.xml文件
4、实例化控件,实现按钮的点击事件
修改MainActivity.java文件
package com.example.mycalculator;
import android.os.Bundle;
import android.app.Activity;
import android.text.Editable;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
public class MainActivity extends Activity implements OnClickListener{
//定义按钮、显示框
Button btn_0;//0数字按钮
Button btn_1;//1数字按钮
Button btn_2;//2数字按钮
Button btn_3;//3数字按钮
Button btn_4;//4数字按钮
Button btn_5;//5数字按钮
Button btn_6;//6数字按钮
Button btn_7;//7数字按钮
Button btn_8;//8数字按钮
Button btn_9;//9数字按钮
Button btn_point;//小数点按钮
Button btn_clear;//清楚按钮
Button btn_del;//删除按钮
Button btn_plus;//加号按钮
Button btn_minus;//减号按钮
Button btn_multiply;//乘号按钮
Button btn_divide;//除号按钮
Button btn_equal;//等号按钮
EditText et_input;//显示输入内容的显示屏
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//实例化按钮和显示框
btn_0=(Button) findViewById(R.id.btn_0);
btn_1=(Button) findViewById(R.id.btn_1);
btn_2=(Button) findViewById(R.id.btn_2);
btn_3=(Button) findViewById(R.id.btn_3);
btn_4=(Button) findViewById(R.id.btn_4);
btn_5=(Button) findViewById(R.id.btn_5);
btn_6=(Button) findViewById(R.id.btn_6);
btn_7=(Button) findViewById(R.id.btn_7);
btn_8=(Button) findViewById(R.id.btn_8);
btn_9=(Button) findViewById(R.id.btn_9);
btn_point=(Button) findViewById(R.id.btn_point);
btn_clear=(Button) findViewById(R.id.btn_clear);
btn_del=(Button) findViewById(R.id.btn_del);
btn_plus=(Button) findViewById(R.id.btn_plus);
btn_minus=(Button) findViewById(R.id.btn_minus);
btn_multiply=(Button) findViewById(R.id.btn_multiply);
btn_divide=(Button) findViewById(R.id.btn_divide);
btn_equal=(Button) findViewById(R.id.btn_equal);
et_input=(EditText) findViewById(R.id.et_input);
//给按钮设置点击事件
btn_0.setOnClickListener(this);
btn_1.setOnClickListener(this);
btn_2.setOnClickListener(this);
btn_3.setOnClickListener(this);
btn_4.setOnClickListener(this);
btn_5.setOnClickListener(this);
btn_6.setOnClickListener(this);
btn_7.setOnClickListener(this);
btn_8.setOnClickListener(this);
btn_9.setOnClickListener(this);
btn_point.setOnClickListener(this);
btn_clear.setOnClickListener(this);
btn_del.setOnClickListener(this);
btn_plus.setOnClickListener(this);
btn_minus.setOnClickListener(this);
btn_multiply.setOnClickListener(this);
btn_divide.setOnClickListener(this);
btn_equal.setOnClickListener(this);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
//重写onClick方法
@Override
public void onClick(View arg0) {
// TODO Auto-generated method stub
}
}
5、实现业务逻辑
修改上述MainActivity.java文件
package com.example.mycalculator;
import android.os.Bundle;
import android.app.Activity;
import android.text.Editable;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
public class MainActivity extends Activity implements OnClickListener{
//定义按钮、显示框
Button btn_0;//0数字按钮
Button btn_1;//1数字按钮
Button btn_2;//2数字按钮
Button btn_3;//3数字按钮
Button btn_4;//4数字按钮
Button btn_5;//5数字按钮
Button btn_6;//6数字按钮
Button btn_7;//7数字按钮
Button btn_8;//8数字按钮
Button btn_9;//9数字按钮
Button btn_point;//小数点按钮
Button btn_clear;//清楚按钮
Button btn_del;//删除按钮
Button btn_plus;//加号按钮
Button btn_minus;//减号按钮
Button btn_multiply;//乘号按钮
Button btn_divide;//除号按钮
Button btn_equal;//等号按钮
EditText et_input;//显示输入内容的显示屏
boolean clear_flag;//清空标识
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//实例化按钮和显示框
btn_0=(Button) findViewById(R.id.btn_0);
btn_1=(Button) findViewById(R.id.btn_1);
btn_2=(Button) findViewById(R.id.btn_2);
btn_3=(Button) findViewById(R.id.btn_3);
btn_4=(Button) findViewById(R.id.btn_4);
btn_5=(Button) findViewById(R.id.btn_5);
btn_6=(Button) findViewById(R.id.btn_6);
btn_7=(Button) findViewById(R.id.btn_7);
btn_8=(Button) findViewById(R.id.btn_8);
btn_9=(Button) findViewById(R.id.btn_9);
btn_point=(Button) findViewById(R.id.btn_point);
btn_clear=(Button) findViewById(R.id.btn_clear);
btn_del=(Button) findViewById(R.id.btn_del);
btn_plus=(Button) findViewById(R.id.btn_plus);
btn_minus=(Button) findViewById(R.id.btn_minus);
btn_multiply=(Button) findViewById(R.id.btn_multiply);
btn_divide=(Button) findViewById(R.id.btn_divide);
btn_equal=(Button) findViewById(R.id.btn_equal);
et_input=(EditText) findViewById(R.id.et_input);
//给按钮设置点击事件
btn_0.setOnClickListener(this);
btn_1.setOnClickListener(this);
btn_2.setOnClickListener(this);
btn_3.setOnClickListener(this);
btn_4.setOnClickListener(this);
btn_5.setOnClickListener(this);
btn_6.setOnClickListener(this);
btn_7.setOnClickListener(this);
btn_8.setOnClickListener(this);
btn_9.setOnClickListener(this);
btn_point.setOnClickListener(this);
btn_clear.setOnClickListener(this);
btn_del.setOnClickListener(this);
btn_plus.setOnClickListener(this);
btn_minus.setOnClickListener(this);
btn_multiply.setOnClickListener(this);
btn_divide.setOnClickListener(this);
btn_equal.setOnClickListener(this);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
//重写onClick方法
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
//获取显示屏内容
String str =et_input.getText().toString();
//判断当前点的是哪个按钮
switch (v.getId()) {
//0~9~。按某一个按钮,即往显示屏上累加
case R.id.btn_0:
case R.id.btn_1:
case R.id.btn_2:
case R.id.btn_3:
case R.id.btn_4:
case R.id.btn_5:
case R.id.btn_6:
case R.id.btn_7:
case R.id.btn_8:
case R.id.btn_9:
case R.id.btn_point:
if(clear_flag){
//因为是在上面取得值,这里为了防止进行下一次运算的时候上一次运算的结果没有清空,这里设置str为空
str="";
clear_flag=false;
et_input.setText("");
}
et_input.setText(str+((Button)v).getText());
break;
//运算符
case R.id.btn_plus:
case R.id.btn_minus:
case R.id.btn_multiply:
case R.id.btn_divide:
if(clear_flag){
str="";
clear_flag=false;
et_input.setText("");
}
//加空格以示区分
et_input.setText(str+" "+((Button)v).getText()+" ");
break;
case R.id.btn_del:
if(clear_flag){
str="";
clear_flag=false;
et_input.setText("");
}else if(str!=null&&!str.equals("")){
//删除,当前内容少一个
et_input.setText(str.substring(0,str.length()-1));
}
break;
case R.id.btn_clear:
str="";
clear_flag=false;
et_input.setText("");
break;
case R.id.btn_equal:
//单独写一个方法来获取结果
getResult();
break;
default:
break;
}
}
private void getResult(){
String exp= et_input.getText().toString();
//如果没有输入数字直接按了等号,则直接返回
if(exp==null||exp.equals("")){
return;
}
//因为运算符前后都有空格,如果没有空格,则可能是点了数字直接点了等于,这种情况直接return就好
if(!exp.contains(" ")){
return ;
}
//防止点了等于又点等于
if(clear_flag){
clear_flag=false;
return;
}
//如果有空格,则进行截取获取前后操作数,运算
double result=0;
//运算符前的字符串
String s1=exp.substring(0,exp.indexOf(" "));
//运算符
String op=exp.substring(exp.indexOf(" ")+1,exp.indexOf(" ")+2);
//运算符后的字符串
String s2=exp.substring(exp.indexOf(" ")+3);
//两者都不为空
if (!s1.equals("")&&!s2.equals("")) {
double d1=Double.parseDouble(s1);
double d2=Double.parseDouble(s2);
if(op.equals("+")){
result=d1+d2;
}else if(op.equals("-")){
result=d1-d2;
}else if(op.equals("*")){
result=d1*d2;
}else if(op.equals("/")){
if(d2==0){
result=0;
}else{
result=d1/d2;
}
}
if(!s1.contains(".")&&!s2.contains(".")&&!op.equals("/")){
int r=(int)result;
et_input.setText(r+"");
}else{
et_input.setText(result+"");
}
}
//s1不为空,s2为空
else if(!s1.equals("")&&s2.equals("")){
et_input.setText(result+"");
}
//s1为空s2不为空
else if(s1.equals("")&&!s2.equals("")){
double d2=Double.parseDouble(s2);
if(op.equals("+")){
result=0+d2;
}else if(op.equals("-")){
result=0-d2;
}else if(op.equals("*")){
result=0;
}else if(op.equals("/")){
if(d2==0){
result=0;
}else{
result=0/d2;
}
}
if(!s1.contains(".")&&!s2.contains(".")){
int r=(int)result;
et_input.setText(r+"");
}else{
et_input.setText(result+"");
}
}
//两个都为空
else{
et_input.setText("");
}
}
}
6、结果
7、源代码项目包
http://img.mukewang.com/down/53ec6a670001c9ec00000000.zip