写代码android studio代码记事本,文件名是book1版本是2022.2.1
时间: 2024-02-22 10:57:46 浏览: 154
很好,以下是在 Android Studio 中创建一个名为 "book1" 的记事本应用程序的步骤,版本为 2022.2.1:
1. 打开 Android Studio,点击 "Start a new Android Studio project"。
2. 在 "Choose your project" 窗口中,选择 "Empty Activity",然后点击 "Next"。
3. 在 "Configure your project" 窗口中,输入 "book1" 作为应用程序的名称,选择 "Java" 作为语言,选择 "API 30: Android 11.0 (R)" 作为最低 SDK 版本,然后点击 "Finish"。
4. 在项目结构中,找到 "MainActivity.java" 文件,并用下面的代码替换它:
```
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
import androidx.appcompat.app.AppCompatActivity;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.InputStreamReader;
public class MainActivity extends AppCompatActivity {
EditText editText;
TextView textView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
editText = findViewById(R.id.editText);
textView = findViewById(R.id.textView);
Button saveButton = findViewById(R.id.saveButton);
saveButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
saveToFile();
}
});
Button loadButton = findViewById(R.id.loadButton);
loadButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
loadFromFile();
}
});
}
private void saveToFile() {
try {
String text = editText.getText().toString();
File file = new File(getFilesDir(), "book1.txt");
FileOutputStream outputStream = new FileOutputStream(file);
outputStream.write(text.getBytes());
outputStream.close();
textView.setText("Text saved to " + file.getAbsolutePath());
} catch (Exception e) {
e.printStackTrace();
}
}
private void loadFromFile() {
try {
File file = new File(getFilesDir(), "book1.txt");
FileInputStream inputStream = new FileInputStream(file);
BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream));
StringBuilder builder = new StringBuilder();
String line;
while ((line = reader.readLine()) != null) {
builder.append(line).append("\n");
}
reader.close();
inputStream.close();
textView.setText(builder.toString());
} catch (Exception e) {
e.printStackTrace();
}
}
}
```
5. 在 "res/layout" 目录下,找到 "activity_main.xml" 文件,并用下面的代码替换它:
```
<?xml version="1.0" encoding="utf-8"?>
<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="0dp"
android:layout_weight="1"
android:hint="Enter text here..." />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<Button
android:id="@+id/saveButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Save" />
<Button
android:id="@+id/loadButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Load" />
</LinearLayout>
<TextView
android:id="@+id/textView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="No text loaded." />
</LinearLayout>
```
6. 运行应用程序并测试它是否正常工作。现在,您应该可以输入文本并将其保存到名为 "book1.txt" 的文件中,然后从文件中加载文本。
阅读全文