How to create a custom lock screen widget (I just want to display a button)

前端 未结 1 781
鱼传尺愫
鱼传尺愫 2020-12-16 03:50

I need to allow users to quickly capture an image using my app when the device is locked. I figure the quickest way for a user to do this is via a button/widget on the lock

相关标签:
1条回答
  • 2020-12-16 04:07

    API Levels

    Lock-screen widgets were introduced in API 17 (4.2), and removed in API 21 (5.0). They are not supported on other official releases.


    Basic Widget

    I wrote a simple widget as a demo tutorial - it contains all the boilerplate code required for a widget, and very little else:

    • WiFi Widget Demo (github)
    • WiFi Widget (Play store)

    I wrote it in such a way to make it easy for anyone to remove the "wifi" related code, and adapt it to their own widget requirements. It might be perfect for you to look at, and relatively simple to add a single button to it.


    Lock-screen / Keyguard Widget

    There are 2 changes to make it work as a lock-screen widget:

    • updating the widgetCategory to include keyguard
    • adding an initialKeyguardLayout

    These changes are done in the ./res/xml/widget_info.xml file, as seen below:

    <?xml version="1.0" encoding="utf-8"?>
    <appwidget-provider xmlns:android="http://schemas.android.com/apk/res/android"
        android:initialKeyguardLayout="@layout/widget"
        android:initialLayout="@layout/widget"
        android:minHeight="40dp"
        android:minWidth="250dp"
        android:updatePeriodMillis="0"
        android:widgetCategory="home_screen|keyguard" >
    </appwidget-provider>
    

    I do not know if it is possible to integrate the camera into your own lock-screen widget. Clicking on a lock-screen widget normally requires the user to unlock the device before the click works.

    0 讨论(0)
提交回复
热议问题