安卓应用开发记事本app实训报告

本文将介绍一种基于Android平台开发的记事本应用程序。该应用程序提供了一种简单而实用的方法来写下用户的想法、记录用户在工作、学习、生活中遇到的问题等重要信息,使得这些信息可以随时方便地被用户查找、修改和删除。应用程序包括三个核心功能:新建、编辑和删除笔记。

1.应用程序架构概述

该应用程序共由四个组件构成:Activity、Adapter、Database和Model。其中Activity负责显示界面,Adapter负责管理界面元素的呈现和用户输入事件的响应,数据库用于存储笔记信息,Model则提供了一个抽象的笔记数据结构,并定义了数据库操作的接口。

2.应用程序核心流程

2.1启动应用程序

当用户点击应用程序的图标时,系统会启动MainActivity组件,并根据应用程序的数据模型来初始化笔记列表,进而呈现给用户。

2.2创建新笔记

当用户点击“新建”按钮时,系统会启动NoteEditActivity组件,用户可以在该界面中输入笔记标题和笔记内容,并保存新笔记。当用户完成编辑后,系统会将新笔记保存到数据库中,并返回到MainActivity界面。

2.3编辑笔记

当用户点击笔记列表中的标题时,系统会启动NoteEditActivity组件并传递笔记的标题和内容为参数,这样用户就可以编辑笔记的标题和内容。编辑完成后,系统会将笔记更新到数据库中,并返回到MainActivity界面。

2.4删除笔记

当用户长按笔记列表中的某一项时,系统会提示用户是否要删除该笔记,如果用户确定删除该笔记,则将该笔记从列表中删除,并从数据库中删除。

3.应用程序的实现

使用Java语言和Android API开发该应用程序,实现方法如下.

3.1创建Model类

Model类是笔记数据的抽象,并定义了数据库操作的接口,可以通过以下方法定义:

```java

public class Note {

public long id;

public String title;

public String content;

}

```

3.2创建Database类

Database类用于实现笔记数据的持久化存储和读取,在Android中可以使用SQLite来实现,该过程可以通过以下代码实现:

```java

public class DbOpenHelper extends SQLiteOpenHelper {

// 数据库名

static final String DATABASE_NAME = "note.db";

// 版本号

static final int DATABASE_VERSION = 1;

// 表名

static final String TABLE_NAME = "note";

// 列名

static final String COLUMN_ID = "_id";

static final String COLUMN_TITLE = "title";

static final String COLUMN_CONTENT = "content";

public DbOpenHelper(Context context) {

super(context, DATABASE_NAME, null, DATABASE_VERSION);

}

@Override

public void onCreate(SQLiteDatabase database) {

String sql = "CREATE TABLE " + TABLE_NAME + " ("

+ COLUMN_ID + " INTEGER PRIMARY KEY AUTOINCREMENT,"

+ COLUMN_TITLE + " TEXT NOT NULL,"

+ COLUMN_CONTENT + " TEXT NOT NULL);";

database.execSQL(sql);

}

@Override

public void onUpgrade(SQLiteDatabase database, int oldVersion, int newVersion) {

database.execSQL("DROP TABLE IF EXISTS " + TABLE_NAME);

onCreate(database);

}

// 对外提供数据操作接口

public NoteRepository getRepository() {

return new NoteRepository(getWritableDatabase());

}

}

public class NoteRepository {

private SQLiteDatabase db;

public NoteRepository(SQLiteDatabase db) {

this.db = db;

}

public List findAll() {

List result = new ArrayList<>();

Cursor cursor = db.query(DbOpenHelper.TABLE_NAME, null, null, null, null, null, null);

while (cursor.moveToNext()) {

Note note = new Note();

note.id = cursor.getLong(cursor.getColumnIndex(DbOpenHelper.COLUMN_ID));

note.title = cursor.getString(cursor.getColumnIndex(DbOpenHelper.COLUMN_TITLE));

note.content = cursor.getString(cursor.getColumnIndex(DbOpenHelper.COLUMN_CONTENT));

result.add(note);

}

cursor.close();

return result;

}

public void delete(Note note) {

db.delete(DbOpenHelper.TABLE_NAME, DbOpenHelper.COLUMN_ID + "=?", new String[]{String.valueOf(note.id)});

}

public long create(Note note) {

ContentValues values = new ContentValues();

values.put(DbOpenHelper.COLUMN_TITLE, note.title);

values.put(DbOpenHelper.COLUMN_CONTENT, note.content);

return db.insert(DbOpenHelper.TABLE_NAME, null, values);

}

public void update(Note oldNote, Note newNote) {

ContentValues values = new ContentValues();

values.put(DbOpenHelper.COLUMN_TITLE, newNote.title);

values.put(DbOpenHelper.COLUMN_CONTENT, newNote.content);

db.update(DbOpenHelper.TABLE_NAME, values, DbOpenHelper.COLUMN_ID + "=?", new String[]{String.valueOf(oldNote.id)});

}

}

```

3.3创建Activity类

为了缩短代码长度,这里只列出MainActivity和NoteEditActivity的代码。MainActivity如下:

```java

public class MainActivity extends AppCompatActivity {

private NoteListAdapter noteListAdapter;

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);

RecyclerView recyclerView = findViewById(R.id.note_list);

recyclerView.setLayoutManager(new LinearLayoutManager(this));

noteListAdapter = new NoteListAdapter(this);

recyclerView.setAdapter(noteListAdapter);

FloatingActionButton fab = findViewById(R.id.fab);

fab.setOnClickListener(view -> {

Intent intent = new Intent(MainActivity.this, NoteEditActivity.class);

startActivityForResult(intent, 0x10);

});

}

@Override

protected void onResume() {

super.onResume();

// 从数据库中加载笔记数据

List noteList = DbOpenHelper.getInstance(this).getRepository().findAll();

noteListAdapter.setDataset(noteList);

}

@Override

protected void onActivityResult(int requestCode, int resultCode, Intent data) {

super.onActivityResult(requestCode, resultCode, data);

// 处理新建笔记界面和编辑笔记界面的返回

if (resultCode == Activity.RESULT_OK) {

if (requestCode == 0x10) { // 新建笔记

Bundle bundle = data.getExtras();

DbOpenHelper.getInstance(this).getRepository().create(createNoteFromBundle(bundle));

} else if (requestCode == 0x20) { // 编辑笔记

Bundle bundle = data.getExtras();

Note oldNote = (Note) bundle.getSerializable("note");

Note newNote = createNoteFromBundle(bundle);

DbOpenHelper.getInstance(this).getRepository().update(oldNote, newNote);

}

List noteList = DbOpenHelper.getInstance(this).getRepository().findAll();

noteListAdapter.setDataset(noteList);

}

}

private Note createNoteFromBundle(Bundle bundle) {

Note note = new Note();

note.title = bundle.getString("title");

note.content = bundle.getString("content");

return note;

}

}

```

NoteEditActivity如下:

```java

public class NoteEditActivity extends AppCompatActivity {

private EditText editTitle;

private EditText editContent;

private String originalTitle;

private String originalContent;

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_note_edit);

editTitle = findViewById(R.id.edit_title);

editContent = findViewById(R.id.edit_content);

Intent currentIntent = getIntent();

if (currentIntent != null) {

originalTitle = currentIntent.getStringExtra("title");

originalContent = currentIntent.getStringExtra("content");

editTitle.setText(originalTitle);

editContent.setText(originalContent);

}

FloatingActionButton fab = findViewById(R.id.fab);

fab.setOnClickListener(view -> {

Intent data = new Intent();

Bundle bundle = new Bundle();

bundle.putString("title", editTitle.getText().toString());

bundle.putString("content", editContent.getText().toString());

data.putExtras(bundle);

setResult(Activity.RESULT_OK, data);

finish();

});

}

@Override

public void onBackPressed() {

Bundle bundle = new Bundle();

bundle.putSerializable("note", createNoteFromView());

Intent data = new Intent();

data.putExtras(bundle);

setResult(Activity.RESULT_OK, data);

super.onBackPressed();

}

private Note createNoteFromView() {

Note note = new Note();

note.title = editTitle.getText().toString();

note.content = editContent.getText().toString();

return note;

}

}

```

4.结论

本文介绍了一种基于Android平台开发的记事本应用程序,并对其核心功能和实现细节进行了介绍。通过该应用程序的实现可以帮助初学者了解Android应用程序的开发过程和基本思想,也可以启发开发者思考如何在现有应用程序架构基础上进行拓展和优化。

川公网安备 51019002001728号