安卓计算器源代码eclipse
时间: 2023-09-04 07:08:01 浏览: 166
功能完整的计算器(java+applet)源代码.zip
以下是一个简单的安卓计算器的源代码,使用Eclipse开发:
MainActivity.java
```java
package com.example.calculator;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.TextView;
import androidx.appcompat.app.AppCompatActivity;
public class MainActivity extends AppCompatActivity implements OnClickListener {
Button btn0, btn1, btn2, btn3, btn4, btn5, btn6, btn7, btn8, btn9, btnAdd, btnSub, btnMul, btnDiv, btnClr, btnEql;
TextView tvInput;
double val1 = Double.NaN;
double val2;
char op;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
btn0 = findViewById(R.id.btn0);
btn1 = findViewById(R.id.btn1);
btn2 = findViewById(R.id.btn2);
btn3 = findViewById(R.id.btn3);
btn4 = findViewById(R.id.btn4);
btn5 = findViewById(R.id.btn5);
btn6 = findViewById(R.id.btn6);
btn7 = findViewById(R.id.btn7);
btn8 = findViewById(R.id.btn8);
btn9 = findViewById(R.id.btn9);
btnAdd = findViewById(R.id.btnAdd);
btnSub = findViewById(R.id.btnSub);
btnMul = findViewById(R.id.btnMul);
btnDiv = findViewById(R.id.btnDiv);
btnClr = findViewById(R.id.btnClr);
btnEql = findViewById(R.id.btnEql);
tvInput = findViewById(R.id.tvInput);
btn0.setOnClickListener(this);
btn1.setOnClickListener(this);
btn2.setOnClickListener(this);
btn3.setOnClickListener(this);
btn4.setOnClickListener(this);
btn5.setOnClickListener(this);
btn6.setOnClickListener(this);
btn7.setOnClickListener(this);
btn8.setOnClickListener(this);
btn9.setOnClickListener(this);
btnAdd.setOnClickListener(this);
btnSub.setOnClickListener(this);
btnMul.setOnClickListener(this);
btnDiv.setOnClickListener(this);
btnClr.setOnClickListener(this);
btnEql.setOnClickListener(this);
}
@Override
public void onClick(View v) {
switch (v.getId()) {
case R.id.btn0:
tvInput.setText(tvInput.getText().toString() + "0");
break;
case R.id.btn1:
tvInput.setText(tvInput.getText().toString() + "1");
break;
case R.id.btn2:
tvInput.setText(tvInput.getText().toString() + "2");
break;
case R.id.btn3:
tvInput.setText(tvInput.getText().toString() + "3");
break;
case R.id.btn4:
tvInput.setText(tvInput.getText().toString() + "4");
break;
case R.id.btn5:
tvInput.setText(tvInput.getText().toString() + "5");
break;
case R.id.btn6:
tvInput.setText(tvInput.getText().toString() + "6");
break;
case R.id.btn7:
tvInput.setText(tvInput.getText().toString() + "7");
break;
case R.id.btn8:
tvInput.setText(tvInput.getText().toString() + "8");
break;
case R.id.btn9:
tvInput.setText(tvInput.getText().toString() + "9");
break;
case R.id.btnAdd:
compute();
op = '+';
break;
case R.id.btnSub:
compute();
op = '-';
break;
case R.id.btnMul:
compute();
op = '*';
break;
case R.id.btnDiv:
compute();
op = '/';
break;
case R.id.btnClr:
tvInput.setText("");
break;
case R.id.btnEql:
compute();
op = '=';
tvInput.setText(String.valueOf(val1));
break;
}
}
private void compute() {
if (!Double.isNaN(val1)) {
val2 = Double.parseDouble(tvInput.getText().toString());
switch (op) {
case '+':
val1 = val1 + val2;
break;
case '-':
val1 = val1 - val2;
break;
case '*':
val1 = val1 * val2;
break;
case '/':
val1 = val1 / val2;
break;
case '=':
break;
}
} else {
val1 = Double.parseDouble(tvInput.getText().toString());
}
tvInput.setText("");
}
}
```
activity_main.xml
```xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="16dp"
tools:context=".MainActivity">
<TextView
android:id="@+id/tvInput"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/llButtons"
android:layout_marginBottom="16dp"
android:background="@android:color/white"
android:gravity="end"
android:maxLines="1"
android:padding="16dp"
android:textSize="36sp" />
<LinearLayout
android:id="@+id/llButtons"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_marginTop="16dp"
android:orientation="horizontal"
android:weightSum="4">
<Button
android:id="@+id/btn7"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="7" />
<Button
android:id="@+id/btn8"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="8" />
<Button
android:id="@+id/btn9"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="9" />
<Button
android:id="@+id/btnDiv"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="/" />
<Button
android:id="@+id/btn4"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="4" />
<Button
android:id="@+id/btn5"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="5" />
<Button
android:id="@+id/btn6"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="6" />
<Button
android:id="@+id/btnMul"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="*" />
<Button
android:id="@+id/btn1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="1" />
<Button
android:id="@+id/btn2"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="2" />
<Button
android:id="@+id/btn3"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="3" />
<Button
android:id="@+id/btnSub"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="-" />
<Button
android:id="@+id/btn0"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="0" />
<Button
android:id="@+id/btnClr"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="C" />
<Button
android:id="@+id/btnAdd"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="+" />
<Button
android:id="@+id/btnEql"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="=" />
</LinearLayout>
</RelativeLayout>
```
注意:此代码仅作为示例,可能存在一些缺陷。
阅读全文