實現一個簡陋的記事本軟件
前言
因為暑假回家,家裏wifi壞了,想著自學安卓這麽久了,連一個自己的哪怕很簡陋的app都沒寫過,所以就花了點時間做一下,記得當初才開始學編程的時候,學習群裏有哥們發了自己寫的記事本軟件,所以這次我也做個記事本 app 吧 (很隨便).
準備知識
- Android Studio (v2.3)
- ListView
- SQLite
- 文件存儲
- 自定義 view
開始動手吧
主要使用點擊事件,創建 Intent
實例 , 實現 activity
之間的切換 . 整體上並不難,其中自定義了 Toast
, 在 Toast
提示窗口加入了圖片顯示.在網上找了一下自定義 Toast
的blog , 一大堆代碼 , 挺麻煩的,於是自己看了一下 Toast
setView()
方法:
我的理解就是自己做一個 layout
然後傳到這個方法裏面 , 就可以達到你自己想要的效果
public class ToastView{ private static TextView toastText; private static ImageView toastImageView; public static void showToast(Context context, String message, Drawable image){ Toast toast = new Toast(context); View toastView = LayoutInflater.from(context).inflate(R.layout.toast_view,null); toastText= (TextView) toastView.findViewById(R.id.toast_text); toastText.setText(message); toastText.setTextSize(26); toastImageView= (ImageView) toastView.findViewById(R.id.toast_image_view); if(image!=null){ toastImageView.setImageDrawable(image); } toast.setView(toastView); toast.show(); } public static void showToast2(Context context, String message, int image){ Toast toast = new Toast(context); View toastView = LayoutInflater.from(context).inflate(R.layout.toast_view,null); toastText= (TextView) toastView.findViewById(R.id.toast_text); toastText.setText(message); toastText.setTextSize(26); toastImageView= (ImageView) toastView.findViewById(R.id.toast_image_view); toastImageView.setImageResource(image); toast.setView(toastView); toast.show(); } }
有兩個方法都可以進行自定義 view
的實現,主要是傳入的圖片參數不同, showToast()
是傳入一個 Drawable
對象, showToast2()
是傳入圖片資源的 id
.
下面是自定義 Toast
的布局:
<!-- toast_view.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:background="@drawable/toast_background" android:orientation="horizontal"> <ImageView android:id="@+id/toast_image_view" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center_vertical" android:layout_marginLeft="15dp" android:src="@mipmap/ic_touxiang" /> <TextView android:id="@+id/toast_text" android:layout_width="wrap_content" android:layout_gravity="center_vertical" android:layout_marginRight="15dp" android:layout_height="wrap_content" android:textColor="#000000" /> </LinearLayout>
在每次編輯完成後,保存時會產生一個 uuid
作為編輯內容存儲到內存的文件名,同時將 uuid
保存到數據庫 , 便於創建筆記列表的時候, listview
通過獲取數據庫裏面的 uuid
讀取對應的文件,刪除 listview
的 item
就刪除數據庫中對應的 uuid
和 uuid
對應的文件 (這些都很簡單,就不贅述了)
但是在刪除 item
的同時刪除數據庫中的 uuid
這裏卡了一下,無奈之下,只好在每個自定義的 item
布局中加入一個 TextView
將這個 TextView
的內容設為每個 item
對應文件的 uuid
.
<!-- listview_item.xml -->
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/list_title"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:textColor="#000000"
android:textSize="20sp"
android:layout_marginRight="8dp"
app:layout_constraintRight_toRightOf="parent"
android:layout_marginBottom="8dp"
app:layout_constraintBottom_toTopOf="@+id/guideline"
android:layout_marginLeft="8dp"
app:layout_constraintLeft_toLeftOf="@+id/guideline2"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintTop_toTopOf="@+id/imageView2"
android:layout_marginTop="0dp" />
<TextView
android:id="@+id/un_visiable"
android:visibility="gone"
android:layout_width="0dp"
android:layout_height="0dp"
/>
<TextView
android:id="@+id/list_content"
android:textColor="#000000"
android:textSize="15sp"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginRight="8dp"
android:maxLines="1"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="@+id/guideline"
android:layout_marginTop="8dp"
android:layout_marginLeft="8dp"
app:layout_constraintLeft_toLeftOf="@+id/guideline2"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintBottom_toBottomOf="@+id/imageView2"
android:layout_marginBottom="0dp" />
<android.support.constraint.Guideline
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/guideline"
android:orientation="horizontal"
app:layout_constraintGuide_percent="0.5" />
<android.support.constraint.Guideline
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/guideline2"
android:orientation="vertical"
app:layout_constraintGuide_percent="0.21614583" />
<ImageView
android:id="@+id/imageView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:srcCompat="@mipmap/ic_launcher"
android:layout_marginLeft="8dp"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
android:layout_marginBottom="8dp"
app:layout_constraintTop_toTopOf="parent"
android:layout_marginTop="8dp"
app:layout_constraintRight_toLeftOf="@+id/guideline2"
android:layout_marginRight="8dp" />
</android.support.constraint.ConstraintLayout>
最後加入了一個 FloatingActionButton
,沒啥用,純粹為了裝逼,而且 MainActivity
非常蛋疼的搞了個側滑菜單,也沒用上.
github地址 : https://github.com/killerYe/MyApp
新手上道,沒有寫博客的經驗,也沒開發經驗,哪裏做得不好,指點指點就好,別噴哦 ! ! !
因為我也是剛學 android
不久,所以有興趣的同學可以加個微信, 一起學習, 討論一下哦 ! ! !
實現一個簡陋的記事本軟件