簡體   English   中英

從 android 11 小部件啟動另一個應用程序?

[英]Launch another app from android 11 widget?

我無法在 android 11 上啟動小部件。

此代碼適用於我的 android 9 手機,但 android 11 Google Pixel 3a 模擬器不起作用。 我該怎么做。 好的,所以我想要做的是創建一個小部件,該小部件將在按下小部件時簡單地啟動另一個應用程序。

小部件 XML

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <Button
        android:text="Whatsapp Launch"
        android:id="@+id/button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">

    </Button>

    <Button
        android:layout_marginLeft="30dp"
        android:text="Spotify Launch"
        android:id="@+id/button2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">

    </Button>
    

</LinearLayout>

小部件類

class SimpleAppWidget : AppWidgetProvider() {

    override fun onUpdate(
        context: Context,
        appWidgetManager: AppWidgetManager,
        appWidgetIds: IntArray
    ) {
        // There may be multiple widgets active, so update all of them
        for (appWidgetId in appWidgetIds) {
            updateAppWidget(context, appWidgetManager, appWidgetId)
        }
    }

    private fun updateAppWidget(
        context: Context, appWidgetManager: AppWidgetManager,
        appWidgetId: Int
    ) {

        // Construct the RemoteViews object
        val views = RemoteViews(context.packageName, R.layout.simple_app_widget)
        // Construct an Intent object includes web adresss.

        val launchIntent12 = context!!.packageManager.getLaunchIntentForPackage("com.spotify.music")
        val launchIntent122 = context!!.packageManager.getLaunchIntentForPackage("com.whatsapp")
        // In widget we are not allowing to use intents as usually. We have to use PendingIntent instead of 'startActivity'
        val pendingIntent = PendingIntent.getActivity(context, 0, launchIntent122, 0)
        val pendingIntent2 = PendingIntent.getActivity(context, 0, launchIntent12, 0)
        // Here the basic operations the remote view can do.
        views.setOnClickPendingIntent(R.id.button, pendingIntent)
        views.setOnClickPendingIntent(R.id.button2, pendingIntent2)
        // Instruct the widget manager to update the widget
        appWidgetManager.updateAppWidget(appWidgetId, views)
    }

}

首先,您需要向manifest添加包可見性規則 就目前而言, getLaunchIntentForPackage()可能返回null 修復此問題后,在繼續之前完全卸載並重新安裝該應用程序。

還:

  • 為您的PendingIntent對象使用唯一 ID(它們都在getActivity()的第二個參數中設置為0

  • 考慮使用PendingIntent.FLAG_UPDATE_CURRENT作為getActivity()的第四個參數

小部件活動

  class SimpleAppWidget : AppWidgetProvider() {

override fun onUpdate(
    context: Context,
    appWidgetManager: AppWidgetManager,
    appWidgetIds: IntArray
) {
    // There may be multiple widgets active, so update all of them
    for (appWidgetId in appWidgetIds) {
        updateAppWidget(context, appWidgetManager, appWidgetId)
    }
}

@SuppressLint("RemoteViewLayout")
private fun updateAppWidget(
    context: Context, appWidgetManager: AppWidgetManager,
    appWidgetId: Int
) {

    // Construct the RemoteViews object
    val views = RemoteViews(context.packageName, R.layout.simple_app_widget)
    val launchIntent2 = context!!.packageManager.getLaunchIntentForPackage("com.spotify.music")
    val pendingIntent2 = PendingIntent.getActivity(context, 1, launchIntent2, PendingIntent.FLAG_UPDATE_CURRENT)
    views.setOnClickPendingIntent(R.id.button2, pendingIntent2)

    appWidgetManager.updateAppWidget(appWidgetId, views)
}

小部件權限

<queries>
    <package android:name="com.spotify.music"/>
    <package android:name="com.example.widget11" />
    <intent>
        <action android:name="com.spotify.music" />
    </intent>
</queries>

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="true"
    android:theme="@style/Theme.Widget11">
    <receiver android:name=".SimpleAppWidget">
        <intent-filter>
            <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
        </intent-filter>

        <meta-data
            android:name="android.appwidget.provider"
            android:resource="@xml/simple_app_widget_info" />
    </receiver>

    <activity android:name=".MainActivity">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM