用Android写一个布局和代码要求是基于Activity的生命周期方法,利用SharedPreferences类设计一个便签条,记录当天的安排,可以随时打开便签进行修改,修改后自动保存修改
时间: 2024-02-23 20:01:10 浏览: 55
好的,这个问题其实和之前的问题很相似,只不过需要加上布局和代码的要求,我会尽力回答。首先,我们需要先设计一个简单的布局,用来显示便签内容和编辑区域。下面是一个示例布局文件:
```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">
<TextView
android:id="@+id/note_text_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="16dp"
android:textAppearance="@style/TextAppearance.AppCompat.Medium" />
<EditText
android:id="@+id/note_edit_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="16dp"
android:hint="@string/edit_note_hint" />
</LinearLayout>
```
这个布局文件中包含一个TextView和一个EditText,用来显示便签内容和编辑区域。接下来,我们需要在Activity中实现对生命周期方法的重写,以及对SharedPreferences的读写操作。下面是一个示例代码:
```java
public class NoteActivity extends AppCompatActivity {
private TextView noteTextView;
private EditText noteEditText;
private SharedPreferences preferences;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_note);
noteTextView = findViewById(R.id.note_text_view);
noteEditText = findViewById(R.id.note_edit_text);
preferences = getPreferences(MODE_PRIVATE);
String note = preferences.getString("note", "");
noteTextView.setText(note);
noteEditText.setText(note);
noteEditText.addTextChangedListener(new TextWatcher() {
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
// Do nothing
}
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
// Do nothing
}
@Override
public void afterTextChanged(Editable s) {
preferences.edit().putString("note", s.toString()).apply();
noteTextView.setText(s.toString());
}
});
}
@Override
protected void onResume() {
super.onResume();
String note = preferences.getString("note", "");
noteTextView.setText(note);
noteEditText.setText(note);
}
}
```
在这个示例代码中,我们首先在NoteActivity的onCreate方法中初始化了一个TextView、一个EditText和一个SharedPreferences对象。然后,我们通过SharedPreferences对象来读取之前存储的便签信息,并在TextView和EditText控件中显示出来。在EditText控件中,我们添加了一个TextWatcher,用来监听用户对便签内容的修改。当用户修改便签时,我们将修改后的内容存储到SharedPreferences中,并在TextView控件中显示出来。在NoteActivity的onResume方法中,我们重新读取SharedPreferences中存储的便签信息,并更新TextView和EditText控件的内容。这样,就可以实现一个基于Activity的生命周期方法和SharedPreferences的便签应用了。
阅读全文