请帮我写一个安卓开发实例基于java,实现简易备忘录功能,请给我具体代码并告诉我如何在我自己的电脑上测试
时间: 2024-03-03 15:51:44 浏览: 71
好的,以下是一个基于Java的简易备忘录应用的代码实例:
MainActivity.java
```
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
public class MainActivity extends AppCompatActivity {
private EditText editText;
private Button saveButton;
private Button loadButton;
private String fileName = "note.txt";
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
editText = findViewById(R.id.editText);
saveButton = findViewById(R.id.saveButton);
loadButton = findViewById(R.id.loadButton);
saveButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
saveNote();
}
});
loadButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
loadNote();
}
});
}
private void saveNote() {
String text = editText.getText().toString();
FileOutputStream fos = null;
try {
fos = openFileOutput(fileName, MODE_PRIVATE);
fos.write(text.getBytes());
Toast.makeText(this, "Note saved successfully.", Toast.LENGTH_SHORT).show();
} catch (IOException e) {
e.printStackTrace();
Toast.makeText(this, "Error while saving note.", Toast.LENGTH_SHORT).show();
} finally {
try {
if (fos != null) {
fos.close();
}
} catch (IOException e) {
e.printStackTrace();
}
}
}
private void loadNote() {
FileInputStream fis = null;
try {
fis = openFileInput(fileName);
int length = fis.available();
byte[] buffer = new byte[length];
fis.read(buffer);
String text = new String(buffer);
editText.setText(text);
Toast.makeText(this, "Note loaded successfully.", Toast.LENGTH_SHORT).show();
} catch (IOException e) {
e.printStackTrace();
Toast.makeText(this, "Error while loading note.", Toast.LENGTH_SHORT).show();
} finally {
try {
if (fis != null) {
fis.close();
}
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
```
activity_main.xml
```
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="16dp"
tools:context=".MainActivity">
<EditText
android:id="@+id/editText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Enter your note here." />
<Button
android:id="@+id/saveButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Save" />
<Button
android:id="@+id/loadButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Load" />
</LinearLayout>
```
在你自己的电脑上测试这个应用,你需要进行以下步骤:
1. 安装Android Studio。你可以从官网下载并安装Android Studio,它是开发Android应用的官方工具。
2. 下载代码。将上面的代码复制到Android Studio中的一个新项目中。
3. 运行应用。将你的安卓手机连接到电脑上,然后在Android Studio中点击运行按钮。Android Studio将会构建应用并将其安装到你的手机上。
4. 测试应用。在你的手机上打开应用,输入一些文本,然后点击“Save”按钮保存备忘录。然后点击“Load”按钮加载备忘录并检查是否正确加载了。
阅读全文