91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

android中listview與SQLite怎么實現記事本功能

發布時間:2022-04-07 17:13:53 來源:億速云 閱讀:155 作者:iii 欄目:編程語言

今天小編給大家分享一下android中listview與SQLite怎么實現記事本功能的相關知識點,內容詳細,邏輯清晰,相信大部分人都還太了解這方面的知識,所以分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后有所收獲,下面我們一起來了解一下吧。

效果: 

android中listview與SQLite怎么實現記事本功能

android中listview與SQLite怎么實現記事本功能

MainActivity:

import android.app.Activity; 
import android.app.AlertDialog.Builder; 
import android.content.DialogInterface; 
import android.content.Intent; 
import android.database.Cursor; 
import android.database.sqlite.SQLiteDatabase; 
import android.os.Bundle; 
import android.view.View; 
import android.view.View.OnClickListener; 
import android.widget.AdapterView; 
import android.widget.AdapterView.OnItemClickListener; 
import android.widget.AdapterView.OnItemLongClickListener; 
import android.widget.Button; 
import android.widget.ListView; 
import android.widget.SimpleAdapter; 
import android.widget.TextView; 
 
import java.util.ArrayList; 
import java.util.HashMap; 
import java.util.List; 
import java.util.Map; 
 
public class MainActivity extends Activity implements 
  OnItemClickListener, OnItemLongClickListener { 
 
 private ListView listview; 
 private SimpleAdapter simple_adapter; 
 private List<Map<String, Object>> dataList; 
 private Button addNote; 
 private TextView tv_content; 
 private NoteDateBaseHelper DbHelper; 
 private SQLiteDatabase DB; 
 
 @Override 
 protected void onCreate(Bundle savedInstanceState) { 
  super.onCreate(savedInstanceState); 
  setContentView(R.layout.activity_main); 
 
  InitView(); 
 } 
 
 //在activity顯示的時候更新listview 
 @Override 
 protected void onStart() { 
  super.onStart(); 
  RefreshNotesList(); 
 } 
 
 
 private void InitView() { 
  tv_content = (TextView) findViewById(R.id.tv_content); 
  listview = (ListView) findViewById(R.id.listview); 
  dataList = new ArrayList<Map<String, Object>>(); 
  addNote = (Button) findViewById(R.id.btn_editnote); 
  DbHelper = new NoteDateBaseHelper(this); 
  DB = DbHelper.getReadableDatabase(); 
 
  listview.setOnItemClickListener(this); 
  listview.setOnItemLongClickListener(this); 
  addNote.setOnClickListener(new OnClickListener() { 
 
   @Override 
   public void onClick(View arg0) { 
    Intent intent = new Intent(MainActivity.this, noteEdit.class); 
    Bundle bundle = new Bundle(); 
    bundle.putString("info", ""); 
    bundle.putInt("enter_state", 0); 
    intent.putExtras(bundle); 
    startActivity(intent); 
   } 
  }); 
 } 
 
 
 //刷新listview 
 public void RefreshNotesList() { 
  //如果dataList已經有的內容,全部刪掉 
  //并且更新simp_adapter 
  int size = dataList.size(); 
  if (size > 0) { 
   dataList.removeAll(dataList); 
   simple_adapter.notifyDataSetChanged(); 
  } 
 
  //從數據庫讀取信息 
  Cursor cursor = DB.query("note", null, null, null, null, null, null); 
  startManagingCursor(cursor); 
  while (cursor.moveToNext()) { 
   String name = cursor.getString(cursor.getColumnIndex("content")); 
   String date = cursor.getString(cursor.getColumnIndex("date")); 
   Map<String, Object> map = new HashMap<String, Object>(); 
   map.put("tv_content", name); 
   map.put("tv_date", date); 
   dataList.add(map); 
  } 
  simple_adapter = new SimpleAdapter(this, dataList, R.layout.item, 
    new String[]{"tv_content", "tv_date"}, new int[]{ 
    R.id.tv_content, R.id.tv_date}); 
  listview.setAdapter(simple_adapter); 
 } 
 
 
 
 // 點擊listview中某一項的點擊監聽事件 
 @Override 
 public void onItemClick(AdapterView<?> arg0, View arg1, int arg2, long arg3) { 
  //獲取listview中此個item中的內容 
  String content = listview.getItemAtPosition(arg2) + ""; 
  String content1 = content.substring(content.indexOf("=") + 1, 
    content.indexOf(",")); 
 
  Intent myIntent = new Intent(MainActivity.this, noteEdit.class); 
  Bundle bundle = new Bundle(); 
  bundle.putString("info", content1); 
  bundle.putInt("enter_state", 1); 
  myIntent.putExtras(bundle); 
  startActivity(myIntent); 
 
 } 
 
 // 點擊listview中某一項長時間的點擊事件 
 @Override 
 public boolean onItemLongClick(AdapterView<?> arg0, View arg1, final int arg2, 
         long arg3) { 
  Builder builder = new Builder(this); 
  builder.setTitle("刪除該日志"); 
  builder.setMessage("確認刪除嗎?"); 
  builder.setPositiveButton("確定", new DialogInterface.OnClickListener() { 
   @Override 
   public void onClick(DialogInterface dialog, int which) { 
    //獲取listview中此個item中的內容 
    //刪除該行后刷新listview的內容 
    String content = listview.getItemAtPosition(arg2) + ""; 
    String content1 = content.substring(content.indexOf("=") + 1, 
      content.indexOf(",")); 
    DB.delete("note", "content = ?", new String[]{content1}); 
    RefreshNotesList(); 
   } 
  }); 
  builder.setNegativeButton("取消", new DialogInterface.OnClickListener() { 
   @Override 
   public void onClick(DialogInterface dialog, int which) { 
   } 
  }); 
  builder.create(); 
  builder.show(); 
  return true; 
 }

NoteDateBaseHelper:

import android.content.Context; 
import android.database.sqlite.SQLiteDatabase; 
import android.database.sqlite.SQLiteOpenHelper; 
 
public class NoteDateBaseHelper extends SQLiteOpenHelper { 
 
 public static final String CreateNote = "create table note (" 
   + "id integer primary key autoincrement, " 
   + "content text , " 
   + "date text)"; 
 
 public NoteDateBaseHelper(Context context) { 
  super(context, "note", null, 1); 
 } 
 
 @Override 
 public void onCreate(SQLiteDatabase db) { 
  db.execSQL(CreateNote); 
 } 
 
 @Override 
 public void onUpgrade(SQLiteDatabase arg0, int arg1, int arg2) { 
  // TODO Auto-generated method stub 
 
 } 
 
 
}

noteEdit:

import android.app.Activity; 
import android.content.ContentValues; 
import android.database.sqlite.SQLiteDatabase; 
import android.os.Bundle; 
import android.view.View; 
import android.view.View.OnClickListener; 
import android.widget.Button; 
import android.widget.EditText; 
import android.widget.TextView; 
import android.widget.Toast; 
 
import java.text.SimpleDateFormat; 
import java.util.Date; 
 
public class noteEdit extends Activity implements OnClickListener { 
 private TextView tv_date; 
 private EditText et_content; 
 private Button btn_ok; 
 private Button btn_cancel; 
 private NoteDateBaseHelper DBHelper; 
 public int enter_state = 0;//用來區分是新建一個note還是更改原來的note 
 public String last_content;//用來獲取edittext內容 
 
 @Override 
 protected void onCreate(Bundle savedInstanceState) { 
  super.onCreate(savedInstanceState); 
  setContentView(R.layout.edit); 
 
  InitView(); 
 } 
 
 private void InitView() { 
  tv_date = (TextView) findViewById(R.id.tv_date); 
  et_content = (EditText) findViewById(R.id.et_content); 
  btn_ok = (Button) findViewById(R.id.btn_ok); 
  btn_cancel = (Button) findViewById(R.id.btn_cancel); 
  DBHelper = new NoteDateBaseHelper(this); 
 
  //獲取此時時刻時間 
  Date date = new Date(); 
  SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm"); 
  String dateString = sdf.format(date); 
  tv_date.setText(dateString); 
 
  //接收內容和id 
  Bundle myBundle = this.getIntent().getExtras(); 
  last_content = myBundle.getString("info"); 
  enter_state = myBundle.getInt("enter_state"); 
  et_content.setText(last_content); 
 
  btn_cancel.setOnClickListener(this); 
  btn_ok.setOnClickListener(this); 
 } 
 
 @Override 
 public void onClick(View view) { 
  switch (view.getId()) { 
   case R.id.btn_ok: 
    SQLiteDatabase db = DBHelper.getReadableDatabase(); 
    // 獲取edittext內容 
    String content = et_content.getText().toString(); 
 
    // 添加一個新的日志 
    if (enter_state == 0) { 
     if (!content.equals("")) { 
      //獲取此時時刻時間 
      Date date = new Date(); 
      SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm"); 
      String dateString = sdf.format(date); 
 
      //向數據庫添加信息 
      ContentValues values = new ContentValues(); 
      values.put("content", content); 
      values.put("date", dateString); 
      db.insert("note", null, values); 
      finish(); 
     } else { 
      Toast.makeText(noteEdit.this, "請輸入你的內容!", Toast.LENGTH_SHORT).show(); 
     } 
    } 
    // 查看并修改一個已有的日志 
    else { 
     ContentValues values = new ContentValues(); 
     values.put("content", content); 
     db.update("note", values, "content = ?", new String[]{last_content}); 
     finish(); 
    } 
    break; 
   case R.id.btn_cancel: 
    finish(); 
    break; 
  } 
 } 
}

activity_main:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
 android:layout_width="fill_parent" 
 android:layout_height="fill_parent" 
 android:orientation="vertical" > 
 
 <TextView 
  android:layout_height="wrap_content" 
  android:layout_width="fill_parent" 
  android:text="記事本" 
  android:textStyle="bold" 
  android:textSize="22sp" 
  android:padding="15dp" 
  android:background="#000" 
  android:textColor="#fff" 
  /> 
 
 <LinearLayout 
  android:layout_width="fill_parent" 
  android:layout_height="0dp" 
  android:layout_weight="1" > 
 
  <ListView 
   android:id="@+id/listview" 
   android:layout_margin="5dp" 
   android:layout_width="match_parent" 
   android:layout_height="wrap_content" > 
  </ListView> 
 </LinearLayout> 
 
 <Button 
  android:id="@+id/btn_editnote" 
  android:layout_width="fill_parent" 
  android:layout_height="wrap_content" 
  android:text="添加備忘錄" 
  android:padding="10dp" 
  android:textSize="20sp" /> 
 
</LinearLayout>

edit:

<?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"> 
 
 <LinearLayout 
  android:layout_width="match_parent" 
  android:layout_height="wrap_content" 
  android:background="#000" 
  android:orientation="vertical" 
 
  android:padding="15dp"> 
 
  <TextView 
   android:layout_width="fill_parent" 
   android:layout_height="wrap_content" 
   android:text="編輯備忘錄" 
   android:textColor="#fff" 
   android:textSize="22sp" 
   android:textStyle="bold" /> 
 
  <TextView 
   android:id="@+id/tv_date" 
   android:layout_width="fill_parent" 
   android:layout_height="wrap_content" 
   android:gravity="end" 
   android:text="編輯時間" 
   android:textColor="#fff" /> 
 </LinearLayout> 
 
 <LinearLayout 
  android:layout_width="match_parent" 
  android:layout_height="0dp" 
  android:layout_weight="1" 
  android:padding="10dp" 
  android:orientation="vertical"> 
  <TextView 
   android:layout_width="fill_parent" 
   android:layout_height="wrap_content" 
   android:text="內容編輯:" 
   android:textColor="#000" 
   android:textSize="20sp" 
   android:layout_margin="10dp" 
   android:textStyle="bold" /> 
 
  <EditText 
   android:id="@+id/et_content" 
   android:layout_width="match_parent" 
   android:layout_height="0dp" 
   android:layout_weight="1" 
   android:background="@drawable/edit_text_style" 
   android:gravity="start" 
   android:hint="此處記錄備忘事件" 
   android:textSize="20sp" /> 
 
  <LinearLayout 
   android:layout_width="match_parent" 
   android:layout_height="wrap_content" 
   android:orientation="horizontal"> 
 
   <Button 
    android:id="@+id/btn_cancel" 
    android:layout_width="0dp" 
    android:layout_height="wrap_content" 
    android:layout_weight="1" 
    android:text="取消" /> 
 
   <Button 
    android:id="@+id/btn_ok" 
    android:layout_width="0dp" 
    android:layout_height="wrap_content" 
    android:layout_weight="1" 
    android:text="保存" /> 
 
  </LinearLayout> 
 </LinearLayout> 
 
</LinearLayout>

item:

<?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:padding="10dp" 
 android:orientation="vertical"> 
 
 <TextView 
  android:id="@+id/tv_content" 
  android:layout_width="match_parent" 
  android:layout_height="wrap_content" 
  android:singleLine="true" 
  android:textSize="20sp" 
  android:textColor="#000" 
  android:text="Large Text" /> 
 
 <TextView 
  android:id="@+id/tv_date" 
  android:layout_width="fill_parent" 
  android:layout_height="wrap_content" 
  android:text="TextView" /> 
 
</LinearLayout>

以上就是“android中listview與SQLite怎么實現記事本功能”這篇文章的所有內容,感謝各位的閱讀!相信大家閱讀完這篇文章都有很大的收獲,小編每天都會為大家更新不同的知識,如果還想學習更多的知識,請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

旅游| 江油市| 曲水县| 沁阳市| 平南县| 阳朔县| 德昌县| 旌德县| 颍上县| 迁安市| 巴南区| 丽水市| 河北区| 蕉岭县| 清徐县| 沙坪坝区| 高碑店市| 荆州市| 宜兰县| 松江区| 仁怀市| 英吉沙县| 开原市| 卢氏县| 大竹县| 双辽市| 洪泽县| 慈溪市| 乌拉特中旗| 高唐县| 上高县| 五河县| 临西县| 临汾市| 贺兰县| 黔西县| 南昌县| 黔西| 阿坝县| 平陆县| 屏山县|