Android利用Intent實現記事本功能(NotePad)_Android

來源:互聯網
上載者:User

本文執行個體為大家分享了Intent如何?一個簡單的記事本功能的示範過程,供大家參考,具體內容如下

1、運行截圖

單擊右上方【…】會彈出【添加】功能表項目,長按某條記錄會彈出捷徑功能表【刪除】項。

2、主要設計步驟

(1)添加引用

滑鼠右擊【引用】à【添加引用】,在彈出的視窗中勾選“System.Data”和“System.Data.SQlite”,如下圖所示:

注意:不需要通過NuGet添加SQLite程式包,只需要按這種方式添加即可。

(2)添加圖片

到Android SDK API 23的Samples的NotePad例子下找到app_notes.png,將其添加到該項目中,並將其換名為ch12_app_notes.png。

(3)添加ch1205_NoteEditor.axml檔案

<?xml version="1.0" encoding="utf-8"?><view xmlns:android="http://schemas.android.com/apk/res/android"  class="MyDemos.SrcDemos.ch1205LinedEditText"  android:id="@+id/note"  android:layout_width="match_parent"  android:layout_height="match_parent"  android:padding="5dip"  android:scrollbars="vertical"  android:fadingEdge="vertical"  android:gravity="top"  android:textSize="22sp"  android:capitalize="sentences" />

(4)添加ch1205_Main.axml檔案

<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  android:layout_width="fill_parent"  android:layout_height="wrap_content"  android:orientation="horizontal"  android:background="#ffffff"  android:padding="10px"> <ImageView   android:id="@+id/icon"   android:layout_width="wrap_content"   android:layout_height="wrap_content"   android:src="@drawable/ch12_app_notes" /> <LinearLayout   android:layout_width="fill_parent"   android:layout_height="wrap_content"   android:orientation="vertical"   android:paddingTop="6px">  <TextView    android:id="@+id/body"    android:layout_width="wrap_content"    android:layout_height="wrap_content" />  <TextView    android:id="@+id/modified"    android:layout_width="wrap_content"    android:layout_height="wrap_content" /> </LinearLayout></LinearLayout> 

(5)添加ch1205Note.cs檔案

using System;namespace MyDemos.SrcDemos{  class ch1205Note : Java.Lang.Object  {    public long Id { get; set; }    public string Body { get; set; }    public DateTime ModifiedTime { get; set; }    public ch1205Note()    {      Id = -1L;      Body = string.Empty;    }    public ch1205Note(long id, string body, DateTime modified)    {      Id = id;      Body = body;      ModifiedTime = modified;    }    public override string ToString()    {      return ModifiedTime.ToString();    }  }} 

(6)添加ch1205LinedEditText.cs檔案

using Android.Content;using Android.Runtime;using Android.Widget;using Android.Graphics;using Android.Util;namespace MyDemos.SrcDemos{  [Register("MyDemos.SrcDemos.ch1205LinedEditText")]  class ch1205LinedEditText : EditText  {    private Rect rect;    private Paint paint;    // 為了LayoutInflater需要提供此建構函式    public ch1205LinedEditText(Context context, IAttributeSet attrs)      : base(context, attrs)    {      rect = new Rect();      paint = new Paint();      paint.SetStyle(Android.Graphics.Paint.Style.Stroke);      paint.Color = Color.LightGray;    }    protected override void OnDraw(Canvas canvas)    {      int count = LineCount;      for (int i = 0; i < count; i++)      {        int baseline = GetLineBounds(i, rect);        canvas.DrawLine(rect.Left, baseline + 1, rect.Right, baseline + 1, paint);      }      base.OnDraw(canvas);    }  }}

(7)添加ch1205NoteRepository.cs檔案

using System;using System.Collections.Generic;using Mono.Data.Sqlite;namespace MyDemos.SrcDemos{  class ch1205NoteRepository  {    private static string db_file = "notes.db3";    private static SqliteConnection GetConnection()    {      var dbPath = System.IO.Path.Combine(        System.Environment.GetFolderPath(          System.Environment.SpecialFolder.Personal), db_file);      bool exists = System.IO.File.Exists(dbPath);      if (!exists) SqliteConnection.CreateFile(dbPath);      var conn = new SqliteConnection("Data Source=" + dbPath);      if (!exists) CreateDatabase(conn);      return conn;    }    private static void CreateDatabase(SqliteConnection connection)    {      var sql = "CREATE TABLE ITEMS (Id INTEGER PRIMARY KEY AUTOINCREMENT, Body ntext, Modified datetime);";      connection.Open();      using (var cmd = connection.CreateCommand())      {        cmd.CommandText = sql;        cmd.ExecuteNonQuery();      }      // Create a sample note to get the user started      sql = "INSERT INTO ITEMS (Body, Modified) VALUES (@Body, @Modified);";      using (var cmd = connection.CreateCommand())      {        cmd.CommandText = sql;        cmd.Parameters.AddWithValue("@Body", "今天有個約會");        cmd.Parameters.AddWithValue("@Modified", DateTime.Now);        cmd.ExecuteNonQuery();      }      connection.Close();    }    public static IEnumerable<ch1205Note> GetAllNotes()    {      var sql = "SELECT * FROM ITEMS;";      using (var conn = GetConnection())      {        conn.Open();        using (var cmd = conn.CreateCommand())        {          cmd.CommandText = sql;          using (var reader = cmd.ExecuteReader())          {            while (reader.Read())            {              yield return new ch1205Note(                reader.GetInt32(0),                reader.GetString(1),                reader.GetDateTime(2));            }          }        }      }    }    public static ch1205Note GetNote(long id)    {      var sql = "SELECT * FROM ITEMS WHERE Id = id;";      using (var conn = GetConnection())      {        conn.Open();        using (var cmd = conn.CreateCommand())        {          cmd.CommandText = sql;          using (var reader = cmd.ExecuteReader())          {            if (reader.Read())              return new ch1205Note(reader.GetInt32(0), reader.GetString(1), reader.GetDateTime(2));            else              return null;          }        }      }    }    public static void DeleteNote(ch1205Note note)    {      var sql = string.Format("DELETE FROM ITEMS WHERE Id = {0};", note.Id);      using (var conn = GetConnection())      {        conn.Open();        using (var cmd = conn.CreateCommand())        {          cmd.CommandText = sql;          cmd.ExecuteNonQuery();        }      }    }    public static void SaveNote(ch1205Note note)    {      using (var conn = GetConnection())      {        conn.Open();        using (var cmd = conn.CreateCommand())        {          if (note.Id < 0)          {            // Do an insert            cmd.CommandText = "INSERT INTO ITEMS (Body, Modified) VALUES (@Body, @Modified); SELECT last_insert_rowid();";            cmd.Parameters.AddWithValue("@Body", note.Body);            cmd.Parameters.AddWithValue("@Modified", DateTime.Now);            note.Id = (long)cmd.ExecuteScalar();          }          else          {            // Do an update            cmd.CommandText = "UPDATE ITEMS SET Body = @Body, Modified = @Modified WHERE Id = @Id";            cmd.Parameters.AddWithValue("@Id", note.Id);            cmd.Parameters.AddWithValue("@Body", note.Body);            cmd.Parameters.AddWithValue("@Modified", DateTime.Now);            cmd.ExecuteNonQuery();          }        }      }    }  }} 

(8)添加ch1205NoteAdapter.cs檔案

using Android.App;using Android.Content;using Android.Widget;namespace MyDemos.SrcDemos{  class ch1205NoteAdapter : ArrayAdapter  {    private Activity activity;    public ch1205NoteAdapter(Activity activity, Context context, int textViewResourceId, ch1205Note[] objects)      : base(context, textViewResourceId, objects)    {      this.activity = activity;    }    public override Android.Views.View GetView(int position, Android.Views.View convertView, Android.Views.ViewGroup parent)    {      //Get our object for this position      var item = (ch1205Note)GetItem(position);      // 如果convertView不為null則重用它,否則從當前布局中填充(inflate)它。      // 由於這種方式不是每次都填充一個新的view,因此可提高效能。      var view = (convertView ?? activity.LayoutInflater.Inflate(        Resource.Layout.ch1205_Main, parent, false)) as LinearLayout;      view.FindViewById<TextView>(Resource.Id.body).Text = Left(item.Body.Replace("\n", " "), 25);      view.FindViewById<TextView>(Resource.Id.modified).Text = item.ModifiedTime.ToString();      return view;    }    private string Left(string text, int length)    {      if (text.Length <= length) return text;      return text.Substring(0, length);    }  }} 

(9)添加ch1205NoteEditorActivity.cs檔案

using Android.App;using Android.Content;using Android.OS;using Android.Widget;using Android.Content.PM;namespace MyDemos.SrcDemos{  [Activity(Label = "ch1205NoteEditorActivity",   ScreenOrientation = ScreenOrientation.Sensor,  ConfigurationChanges = ConfigChanges.KeyboardHidden | ConfigChanges.Orientation)]  public class ch1205NoteEditorActivity : Activity  {    private ch1205Note note;    private EditText text_view;    protected override void OnCreate(Bundle savedInstanceState)    {      base.OnCreate(savedInstanceState);      SetContentView(Resource.Layout.ch1205_NoteEditor);      text_view = FindViewById<EditText>(Resource.Id.note);      var note_id = Intent.GetLongExtra("note_id", -1L);      if (note_id < 0) note = new ch1205Note();      else note = ch1205NoteRepository.GetNote(note_id);    }    protected override void OnResume()    {      base.OnResume();      text_view.SetTextKeepState(note.Body);    }    protected override void OnPause()    {      base.OnPause();      // 如果是建立的記事本且沒有內容,不儲存直接返回。      if (IsFinishing && note.Id == -1 && text_view.Text.Length == 0)        return;      // 儲存記事本      note.Body = text_view.Text;      ch1205NoteRepository.SaveNote(note);    }  }}

(10)添加ch1205NotePadMain.cs檔案

using System.Linq;using Android.App;using Android.Content;using Android.OS;using Android.Views;using Android.Widget;namespace MyDemos.SrcDemos{  [Activity(Label = "ch1205NotePadMain")]  public class ch1205NotePadMain : ListActivity  {    // 功能表項目    public const int MenuItemDelete = Menu.First;    public const int MenuItemInsert = Menu.First + 1;    protected override void OnCreate(Bundle savedInstanceState)    {      base.OnCreate(savedInstanceState);      SetDefaultKeyMode(DefaultKey.Shortcut);      ListView.SetOnCreateContextMenuListener(this);      PopulateList();    }    public void PopulateList()    {      // 擷取存放到列表中的所有記事本項      var notes = ch1205NoteRepository.GetAllNotes();      var adapter = new ch1205NoteAdapter(this, this, Resource.Layout.ch1205_Main, notes.ToArray());      ListAdapter = adapter;    }    public override bool OnCreateOptionsMenu(IMenu menu)    {      base.OnCreateOptionsMenu(menu);      menu.Add(0, MenuItemInsert, 0, "添加")        .SetShortcut('3', 'a')        .SetIcon(Android.Resource.Drawable.IcMenuAdd);      return true;    }    public override bool OnOptionsItemSelected(IMenuItem item)    {      switch (item.ItemId)      {        case MenuItemInsert: // 通過intent添加新項          var intent = new Intent(this, typeof(ch1205NoteEditorActivity));          intent.PutExtra("note_id", -1L);          StartActivityForResult(intent, 0);          return true;      }      return base.OnOptionsItemSelected(item);    }    public override void OnCreateContextMenu(IContextMenu menu, View view, IContextMenuContextMenuInfo menuInfo)    {      var info = (AdapterView.AdapterContextMenuInfo)menuInfo;      var note = (ch1205Note)ListAdapter.GetItem(info.Position);      menu.Add(0, MenuItemDelete, 0, "刪除");    }    public override bool OnContextItemSelected(IMenuItem item)    {      var info = (AdapterView.AdapterContextMenuInfo)item.MenuInfo;      var note = (ch1205Note)ListAdapter.GetItem(info.Position);      switch (item.ItemId)      {        case MenuItemDelete: // 刪除該記事本項          ch1205NoteRepository.DeleteNote(note);          PopulateList();          return true;      }      return false;    }    protected override void OnListItemClick(ListView l, View v, int position, long id)    {      var selected = (ch1205Note)ListAdapter.GetItem(position);      // 執行activity,查看/編輯當前選中的項      var intent = new Intent(this, typeof(ch1205NoteEditorActivity));      intent.PutExtra("note_id", selected.Id);      StartActivityForResult(intent, 0);    }    protected override void OnActivityResult(int requestCode, Result resultCode, Intent data)    {      base.OnActivityResult(requestCode, resultCode, data);      // 當清單項目發生變化時,這裡僅關心如何重新整理它,並沒有處理選定的項      PopulateList();    }  }}

以上就是本文的全部內容,希望對大家的學習有所協助,也希望大家多多支援雲棲社區。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.