What you think is what you get

Posts filed under: Uncategorized

[Tool] 跨裝置共享滑鼠鍵盤軟體 – Synergy

因為工作的關係,我最少也會使用3台實體裝置(Win + Mac + Ubuntu)。 但在不同實體裝置之間共享......

[React Native] React Native version mismatch

react native version mismatch...

[Delphi] 使用 OutputDebugString 輸出訊息

Situation : 在某些情況下無法或不想使用 ShowMessage 來輸出訊息,其實還可以選用 Out......

如何從 adb 啟動 App 並帶參數

概述 如何從adb啟動App並帶參數 做法 以todo-app為例,使用adb啟動App使用的指令為 adb ......

android.util.Log 列印訊息內容太多無法完全顯示

使用 android.util.Log 列印訊息時,若訊息內容太多就會出現無法完全顯示訊息內容的情況。 解決的......

使用 Room DAO 存取資料 (Room)

要使用 Room 存取資料,需要使用 DAO。 這組 DAO 物件形成了 Room 的主要組件,因為每個 DA......

在資料庫中建立 View (Room)

Room 2.1.0 及更高版本提供對 SQLite 資料庫的 View 功能,允許使用者將查詢封裝到類別中。......

使用 Room entities 定義資料 (Room)

使用 Room 時,可以將相關的屬性定義為實體(entities)。 對於每個實體,將會創建一個資料表來保存項......

在本地端資料庫儲存資料 (Room)

在 Room 中有 3 個主要的元件 1.Database: 包含資料庫持有者(database holder......

Room overview

什麼是 Room? Room 是 Android 官方所提供的 ORM,可快速方便的存取 SQLite。 基本......