第一个android demo 实现对配置文件的读取与写入。
界面结果如下:
涉及到的知识点:
sharedPreferences 实现配置文件的读取与写入
findViewById:根据id获取界面元素
布局xml如下:
<?xml version="1.0" encoding="utf-8"?>
<androidx.appcompat.widget.LinearLayoutCompat xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<EditText
android:id="@+id/edit"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="请输入文字"
android:textSize="25sp" />
<Button
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:id="@+id/saveButton"
android:text="Save"
android:textSize="25sp">
</Button>
</androidx.appcompat.widget.LinearLayoutCompat>
读取配置文件如下:
final EditText edit = findViewById(R.id.edit);
Button save = findViewById(R.id.saveButton);
sharedPreferences = getSharedPreferences("Test", MODE_PRIVATE);
String tt = sharedPreferences.getString("tt","11111");
edit.setText(tt);
保存配置文件:
String text = edit.getText().toString();
SharedPreferences.Editor editor = sharedPreferences.edit();
editor.putString("tt",text);
editor.commit();
Toast.makeText(MainActivity.this,"保存成功",Toast.LENGTH_SHORT).show();