📋【Android】使用 Clipboard 點擊按鈕複製文字 Clipboard 在 Android 中是剪 …
分類: Android
Android 自定義View
1.繼承View並複寫建構方法(第一種 new時調用 第二種在xml時調用 第三種在有設定屬性時調用) cla …
Android Widget桌面小物件
1.先定義想要顯示佈局的layout 使用ConstrainLayout的話就沒辦法顯示 <?xml v …
AutoCompleteTextView 增加資料
1.導入Gson與okhttp dependencies { implementation “com.squa …
Android Drawable Animation(幀動畫)教學
1.先備妥圖片 2.在drawable下建立一個xml檔(loading.xml) <?xml vers …
Android FileProvider 配置使用
1.註冊FileProvider(AndroidManifest.xml) <provider andr …
Android 導入FB Login
1.先註冊FB後台帳號 https://developers.facebook.com/ 2.建立應用程式 我 …
RecyclerView 增加分割線
1.添加默認的分割線 recyclerView.addItemDecoration(new DividerIt …
Android JSON解析(1) 陣列包物件 物件包陣列 陣列包物件
練習:https://reurl.cc/KxjQmj 1.先把第一層解析出來 CityModel import …
Android 重啟自己的APP
Java版本 Intent intent = new Intent(this, SplashAct.class …