android studio实现简单计算器
时间: 2024-01-07 07:23:55 浏览: 85
Android studio实现简单计算器
5星 · 资源好评率100%
以下是使用Android Studio实现简单计算器的示例代码:
1. 在布局文件中添加计算器的界面元素,例如按钮和文本框。
```xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<EditText
android:id="@+id/editText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="number" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<Button
android:id="@+id/button1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="1" />
<!-- 添加其他按钮 -->
</LinearLayout>
<!-- 添加其他布局元素 -->
</LinearLayout>
```
2. 在Activity中处理计算器的逻辑。
```java
public class MainActivity extends AppCompatActivity {
private EditText editText;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
editText = findViewById(R.id.editText);
Button button1 = findViewById(R.id.button1);
button1.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
String currentText = editText.getText().toString();
editText.setText(currentText + "1");
}
});
// 添加其他按钮的点击事件处理
}
}
```
3. 在AndroidManifest.xml文件中声明Activity。
```xml
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.calculator">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
```
阅读全文