Android简易记事本

此次做的Android简易记事本的存储方式使用了SQLite数据库,然后界面的实现比较简单,但是,具有增删改查的基本功能,这里可以看一下效果图,如下:
这里写图片描述

这里写图片描述

这里写图片描述
具体操作就是长按可以删除操作,点击可以进行修改,点击添加笔记按钮可以添加一个笔记。

首先我们需要三个界面样式一个是我们的进入程序时的第一个界面,然后第一个界面里面有一个ListView,这个ListView需要一个xml来描述里面的各个元素,这也是第二个。还有一个就是我们的编辑页面的界面。
三个xml描述文件如下:

activity_main.xml:进入程序的第一个界面

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    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_height="wrap_content"  
        android:layout_width="fill_parent"  
        android:text="记事本列表"  
        android:textSize="20sp"  
        android:paddingTop="10dp"  
        android:paddingBottom="5dp"  
        android:gravity="center"/>  

    <LinearLayout  
        android:layout_width="fill_parent"  
        android:layout_height="fill_parent"  
        android:layout_weight="1" >  

        <ListView  
            android:id="@+id/listNote"  
            android:layout_margin="5dp"  
            android:layout_width="match_parent"  
            android:layout_height="wrap_content" >  
        </ListView>  
    </LinearLayout>  

    <Button  
        android:id="@+id/addNote"  
        android:layout_width="fill_parent"  
        android:layout_height="wrap_content"  
        android:layout_gravity="center"  
        android:layout_marginBottom="10dp"  
        android:text="添加笔记"  
        android:textSize="20sp" />  

</LinearLayout>

note_item.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/noteTitle"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginLeft="10dp"
        android:singleLine="true"
        android:text=""
        android:textAppearance="?android:attr/textAppearanceLarge" />

    <TextView
        android:id="@+id/noteCreateTime"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_marginLeft="10dp"
        android:text="" />

</LinearLayout>

note_editor.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/noteId"
        android:visibility="gone"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text=""/>

    <EditText
        android:id="@+id/title"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:ems="10" 
        android:hint="输入标题">
        <requestFocus />
    </EditText>

    <EditText
        android:id="@+id/content"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:hint="输入内容"
        android:gravity="left">
    </EditText>

    <LinearLayout 
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:layout_gravity="center"
        android:gravity="center">

        <Button  
        android:id="@+id/save"  
        android:layout_width="wrap_content"  
        android:layout_height="wrap_content"  
        android:layout_gravity="center"  
        android:layout_marginBottom="10dp"  
        android:text="保存"  
        android:textSize="20sp" />  

        <Button  
        android:id="@+id/cancel"  
        android:layout_width="wrap_content"  
        android:layout_height="wrap_content"  
        android:layout_gravity="center"  
        android:layout_marginBottom="10dp"  
        android:text="取消"  
        android:textSize="20sp" />  
    </LinearLayout>

</LinearLayout>

现在我们可以考虑我们底层的数据库的操作了,这里有一个类专门用于与数据库打交道,如下:
DBService.java

public class DBService {

    private static SQLiteDatabase db = null;

    static {
        //新建或者打开db
        db = SQLiteDatabase.openOrCreateDatabase("data/data/cn.lger.notebook/NoteBook.db", null);

        String sql = "create table NoteBook(_id integer primary key autoincrement,title varchar(255),content TEXT, createTime varchar(25))";

        //判断是否存在表NoteBook,如果不存在会抛出异常,捕捉异常后创建表
        try{
            db.rawQuery("select count(1) from NoteBook ",null);
        }catch(Exception e){
            db.execSQL(sql);
        }
    }

    public static SQLiteDatabase getSQLiteDatabase(){
        return db;
    }

    public static Cursor queryAll(){
        return db.rawQuery("select * from NoteBook ",null);
    }

    public static Cursor queryNoteById(Integer id){
        return db.rawQuery("select * from NoteBook where _id =?",new String[]{id.toString()});
    }

    public static void deleteNoteById(Integer id){
        if(id == null)
            return ;
        db.delete("NoteBook", "_id=?", new String[]{id.toString()});
    }

    public static void updateNoteById(Integer id, ContentValues values){
        db.update("NoteBook", values, "_id=?", new String[]{id.toString()});
    }

    /**
     * 添加一个笔记,并且记录当前添加的时间
     * @param values 表中的各个字段值
     */
    public static void addNote(ContentValues values){
        values.put("createTime", DateFormat.format("yyyy-MM-dd kk:mm:ss", System.currentTimeMillis()).toString());
        db.insert("NoteBook", null, values);
    }
}

下面我们在进入第一个界面的时候需要访问数据库并且将数据的值不断的更新(比如进行了删除操作的时候或者添加操作之后需要刷新),这样,我们就可能需要重写ActivityonResume(),这样就可以调用Cursorrequery()来刷新我们列表中ListView的结果。还有我们需要长按删除,点击修改,添加笔记这些都需要监听事件,因此,这里还要设置监听
具体MainActivity.java的代码如下:

public class MainActivity extends Activity {
    private Cursor listItemCursor = null;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        // 设置添加笔记按钮事件,切换activity
        this.findViewById(R.id.addNote).setOnClickListener(
                new OnClickListener() {
                    @Override
                    public void onClick(View arg0) {
                        Intent in = new Intent();
                        in.setClassName(getApplicationContext(),
                                "cn.lger.notebook.NoteEditActivity");
                        startActivity(in);
                    }
                });

        // 查询所有笔记,并将笔记展示出来
        listItemCursor = DBService.queryAll();
        SimpleCursorAdapter adapter = new SimpleCursorAdapter(MainActivity.this,
                R.layout.note_item, listItemCursor, new String[] { "_id",
                        "title", "createTime" }, new int[] { R.id.noteId,
                        R.id.noteTitle, R.id.noteCreateTime },
                CursorAdapter.FLAG_REGISTER_CONTENT_OBSERVER);
        ((ListView) this.findViewById(R.id.listNote)).setAdapter(adapter);

        initListNoteListener();

    }

    /**
     * 初始化笔记列表的长按和点击事件
     */
    private void initListNoteListener() {
        // 长按删除
        ((ListView) this.findViewById(R.id.listNote))
                .setOnItemLongClickListener(new OnItemLongClickListener() {

                    @Override
                    public boolean onItemLongClick(AdapterView<?> parent,
                            View view, int position, final long id) {
                        new AlertDialog.Builder(MainActivity.this)
                                .setTitle("提示框")
                                .setMessage("确认删除该笔记??")
                                .setPositiveButton("确定",
                                        new DialogInterface.OnClickListener() {
                                            @Override
                                            public void onClick(DialogInterface arg0,int arg1) {
                                                DBService.deleteNoteById((int) id);
                                                //删除后刷新列表
                                                MainActivity.this.onResume();
                                                Toast.makeText(
                                                        MainActivity.this,
                                                        "删除成功!!",
                                                        Toast.LENGTH_LONG)
                                                        .show();
                                            }
                                        }).setNegativeButton("取消", null).show();
                        return true;
                    }
                });

        //点击进行修改操作
        ((ListView) this.findViewById(R.id.listNote))
                .setOnItemClickListener(new OnItemClickListener() {

                    @Override
                    public void onItemClick(AdapterView<?> parent, View view,
                            int position, long id) {
                        Intent in = new Intent();
                        in.setClassName(view.getContext(),
                                "cn.lger.notebook.NoteEditActivity");
                        // 将id数据放置到Intent,切换视图后可以将数据传递过去
                        in.putExtra("id", id);
                        startActivity(in);
                    }
                });

    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }

    /**
     * 当从另一个视图进入该视图会调用该方法
     */
    @Override
    protected void onResume() {
        super.onResume();
        // 要求刷新主页列表笔记
        if (listItemCursor != null) {
            listItemCursor.requery();
        }
    }
}

上面的代码中还涉及到了一个视图切换后的传递信息的操作,就是通过IntentputExtra(key, value)这样可以在切换后的视图中调用函数getIntent().get~Extra(key, replace);来接收传递的数据。

下面是我们的编辑界面中对应的具体实现代码,这里有判断是使用更新操作还是添加操作,主要是判断MainActivity.java有没有传递过来id,如果有就是通过这个id来更新操作,没有就是添加操作。
编辑界面对应的具体实现代码如下:
NoteEditActivity.java

public class NoteEditActivity extends Activity {

    private EditText titleEditText = null;
    private EditText contentEditText = null;
    private String noteId = null;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.note_editor);

        titleEditText = (EditText) NoteEditActivity.this
                .findViewById(R.id.title);
        contentEditText = (EditText) NoteEditActivity.this
                .findViewById(R.id.content);

        initNoteEditValue();

        //取消按钮监听
        this.findViewById(R.id.cancel).setOnClickListener(
                new OnClickListener() {
                    @Override
                    public void onClick(View arg0) {
                        NoteEditActivity.this.finish();
                    }
                });

        this.findViewById(R.id.save).setOnClickListener(new OnClickListener() {
            @Override
            public void onClick(View arg0) {

                final String title = titleEditText.getText().toString();
                final String content = contentEditText.getText().toString();

                //判断标题和内容是否为空,不为空才能保存
                if ("".equals(title) || "".equals(content)) {
                    Toast.makeText(NoteEditActivity.this, "标题或者内容不能为空",
                            Toast.LENGTH_LONG).show();
                    return;
                }

                //提示保存
                new AlertDialog.Builder(NoteEditActivity.this)
                        .setTitle("提示框")
                        .setMessage("确定保存笔记吗??")
                        .setPositiveButton("确定",
                                new DialogInterface.OnClickListener() {
                                    @Override
                                    public void onClick(DialogInterface arg0,
                                            int arg1) {
                                        ContentValues values = new ContentValues();
                                        values.put("title", title);
                                        values.put("content", content);

                                        //如果noteId不为空那么就是更新操作,为空就是添加操作
                                        if (null == noteId || "".equals(noteId))
                                            DBService.addNote(values);
                                        else
                                            DBService.updateNoteById(
                                                    Integer.valueOf(noteId),
                                                    values);
                                        //结束当前activity
                                        NoteEditActivity.this.finish();
                                        Toast.makeText(NoteEditActivity.this, "保存成功!!",
                                                Toast.LENGTH_LONG).show();
                                    }
                                }).setNegativeButton("取消", null).show();

            }
        });
    }

    /**
     * 初始化编辑页面的值(如果进入该页面时存在一个id的话),比如标题,内容。
     */
    private void initNoteEditValue() {
        // 从Intent中获取id的值
        long id = this.getIntent().getLongExtra("id", -1L);
        // 如果有传入id那么id!=-1
        if (id != -1L) {
            // 使用noteId保存id
            noteId = String.valueOf(id);
            // 查询该id的笔记
            Cursor cursor = DBService.queryNoteById((int) id);
            if (cursor.moveToFirst()) {
                // 将内容提取出来
                titleEditText.setText(cursor.getString(1));
                contentEditText.setText(cursor.getString(2));
            }
        }
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }
}

以上就将我们的安卓简易记事本完成了,源码已经上传GitHub

界面采用了拿来主义,可以参考下面文章
http://blog.csdn.net/cjs68/article/details/50211543

  • 9
    点赞
  • 32
    收藏
    觉得还不错? 一键收藏
  • 12
    评论
以下是一个简单的 Android 记事本应用的源代码,你可以参考一下: MainActivity.java: ```java import android.os.Bundle; import android.view.View; import android.widget.EditText; import androidx.appcompat.app.AppCompatActivity; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; public class MainActivity extends AppCompatActivity { private EditText mEditText; private static final String FILE_NAME = "note.txt"; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); mEditText = findViewById(R.id.edit_text); loadNote(); } private void loadNote() { FileInputStream fis = null; try { fis = openFileInput(FILE_NAME); byte[] data = new byte[fis.available()]; fis.read(data); String note = new String(data); mEditText.setText(note); } catch (IOException e) { e.printStackTrace(); } finally { if (fis != null) { try { fis.close(); } catch (IOException e) { e.printStackTrace(); } } } } private void saveNote() { FileOutputStream fos = null; try { fos = openFileOutput(FILE_NAME, MODE_PRIVATE); String note = mEditText.getText().toString(); fos.write(note.getBytes()); } catch (IOException e) { e.printStackTrace(); } finally { if (fos != null) { try { fos.close(); } catch (IOException e) { e.printStackTrace(); } } } } public void onSaveButtonClick(View view) { saveNote(); } } ``` activity_main.xml: ```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/edit_text" android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="1" android:hint="@string/note_hint" android:gravity="top|start" android:padding="16dp" android:textAppearance="@style/TextAppearance.AppCompat.Body1" /> <Button android:id="@+id/save_button" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="end" android:layout_margin="16dp" android:text="@string/save_button_text" android:onClick="onSaveButtonClick" /> </LinearLayout> ``` strings.xml: ```xml <resources> <string name="app_name">Simple Note</string> <string name="note_hint">Type your note here...</string> <string name="save_button_text">Save</string> </resources> ``` 请注意:这只是一个简单的示例应用,没有实现任何其他功能(如读取和编辑笔记、添加标题等)。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 12
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值