What you think is what you get

All posts by: zgh149

Room (Persistence Library) 使用紀錄

Room 為 Android 官方推薦的 ORM 框架,該框架封裝了 SQLite 為底層並提供高層介面以方便......

android 裝置開機後收到廣播通知(BootUpReceiver)

一般要收到系統的廣播通知都是類似的做法。 1.首先建立要接收系統開機完成廣播通知的Receiver impor......

使用 RingtoneManager 播放提示音(NOTIFICATION),鬧鐘(ALARM),來電鈴聲(RINGTONE)

1.播放預設的提示音 public static void playDefaultNotification(C......

Android Get MIME Type and open File by Intent

取得MIME之後再搭配Intent即可根據MIME Type開啟應用程式。 public static Str......

Android layout支援多尺寸螢幕

詳細內容參考官方網站 https://developer.android.com/guide/practice......

Vrapper plugin hotkey

ref: http://vrapper.sourceforge.net/documentation/?topi......

android logcat

1.發生異常之後,直接查看最後1個異常以及該異常的第1個棧記錄。E.G. 02-27 14:01:06.126......

.gitignore file pattern

詳細內容參考這篇 https://www.atlassian.com/git/tutorials/saving......

The Simple Logging Facade for Java (SLF4J) 使用紀錄

SLF4J主要是提供”方便使用”log的工具,照著以下步驟即可在專案中使用 Step1......

android 取得裝置資訊(android.os.Build.class.getFields())

source code note:不一定所有的值都取的到 public static void getDevi......