ในอุปกรณ์ที่ใช้ Android 8.0 (API ระดับ 26) ขึ้นไป Launcher ที่อนุญาตให้ผู้ใช้สร้างทางลัดที่ปักหมุดไว้จะอนุญาตให้ผู้ใช้ปักหมุดวิดเจ็ตลงในหน้าจอหลักได้ด้วย วิดเจ็ตที่ปักหมุดไว้เหล่านี้คล้ายกับทางลัดที่ปักหมุดไว้ โดยช่วยให้ผู้ใช้เข้าถึงงานที่ต้องการในแอป และสามารถเพิ่มไปยังหน้าจอหลักจากแอปได้โดยตรง ดังที่แสดงในวิดีโอต่อไปนี้
อนุญาตให้ผู้ใช้ปักหมุดวิดเจ็ต
คุณสร้างคำขอให้ระบบปักหมุดวิดเจ็ตบน Launcher ที่รองรับได้โดยทำตามขั้นตอนต่อไปนี้
ตรวจสอบว่าคุณได้ประกาศวิดเจ็ตในไฟล์ Manifest ของแอป
เรียกใช้เมธอด
requestPinAppWidget()
ดังที่แสดงในข้อมูลโค้ดต่อไปนี้
Kotlin
val appWidgetManager = AppWidgetManager.getInstance(context) val myProvider = ComponentName(context, ExampleAppWidgetProvider::class.java) if (appWidgetManager.isRequestPinAppWidgetSupported()) { // Create the PendingIntent object only if your app needs to be notified // when the user chooses to pin the widget. Note that if the pinning // operation fails, your app isn't notified. This callback receives the ID // of the newly pinned widget (EXTRA_APPWIDGET_ID). val successCallback = PendingIntent.getBroadcast( /* context = */ context, /* requestCode = */ 0, /* intent = */ Intent(...), /* flags = */ PendingIntent.FLAG_UPDATE_CURRENT) appWidgetManager.requestPinAppWidget(myProvider, null, successCallback) }
Java
AppWidgetManager appWidgetManager = AppWidgetManager.getInstance(context); ComponentName myProvider = new ComponentName(context, ExampleAppWidgetProvider.class); if (appWidgetManager.isRequestPinAppWidgetSupported()) { // Create the PendingIntent object only if your app needs to be notified // when the user chooses to pin the widget. Note that if the pinning // operation fails, your app isn't notified. This callback receives the ID // of the newly pinned widget (EXTRA_APPWIDGET_ID). PendingIntent successCallback = PendingIntent.getBroadcast( /* context = */ context, /* requestCode = */ 0, /* intent = */ new Intent(...), /* flags = */ PendingIntent.FLAG_UPDATE_CURRENT); appWidgetManager.requestPinAppWidget(myProvider, null, successCallback); }
คำแนะนำเกี่ยวกับการออกแบบที่เกี่ยวข้อง
ผู้ใช้ค้นพบและเพิ่มวิดเจ็ตของคุณผ่านเครื่องมือเลือกวิดเจ็ต หรือจากภายในแอปเมื่อฟังก์ชันการทำงานของวิดเจ็ตเกี่ยวข้องมากที่สุด ดูข้อมูลเพิ่มเติมได้ที่การค้นพบและการโปรโมต