单击 android 小部件上的图像按钮后显示一个简单的祝酒词

show a simple toast after click on imagebutton on android widget

我需要帮助向我想添加到我的应用程序的主屏幕小部件添加操作。 我在很多线程上搜索了解决方案,但是 none 对我有用。

我只想在单击小部件上的图像按钮后吐司一条简单的消息。 如果这可行,我想 运行 单击此按钮后的服务意图。

如果您能添加您在 java 中编写的代码,我将非常高兴。

这是 xml 小部件的代码

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#09C"
    android:padding="@dimen/widget_margin">

    <ImageButton
        android:id="@+id/widget_btn"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:srcCompat="@drawable/on" />
</RelativeLayout>

这是 class 本身:

public class wow_shortcut extends AppWidgetProvider {

    static void updateAppWidget(Context context, AppWidgetManager appWidgetManager,
                                int appWidgetId) {

        CharSequence widgetText = wow_shortcutConfigureActivity.loadTitlePref(context, appWidgetId);
        // Construct the RemoteViews object
        RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.wow_shortcut);

        // Instruct the widget manager to update the widget
        appWidgetManager.updateAppWidget(appWidgetId, views);
    }

    @Override
    public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) {
        // There may be multiple widgets active, so update all of them
        for (int appWidgetId : appWidgetIds) {
            updateAppWidget(context, appWidgetManager, appWidgetId);
        }
    }

    @Override
    public void onDeleted(Context context, int[] appWidgetIds) {
        // When the user deletes the widget, delete the preference associated with it.
        for (int appWidgetId : appWidgetIds) {
            wow_shortcutConfigureActivity.deleteTitlePref(context, appWidgetId);
        }
    }

    @Override
    public void onEnabled(Context context) {
        // Enter relevant functionality for when the first widget is created
    }

    @Override
    public void onDisabled(Context context) {
        // Enter relevant functionality for when the last widget is disabled
    }
}


谢谢你,祝你有美好的一天!

从 Android

开始服务
  1. 创建一个扩展 BroadcastReceiver 的 class 并将其添加到 AndroidManifest 文件。
  2. 创建一个。 PendingIntent 开始广播。并将其附加到小部件视图。

    val intent = Intent(context, MyBroadcast::class.java)
    
    val pendingIntent = PendingIntent.getBroadcast(
        context,
        MY_REQUEST_CODE,
        intent,
        PendingIntent.FLAG_UPDATE_CURRENT
    )
    
    setOnClickPendingIntent(R.id.widget_btn, pendingIntent)
    
  3. 在您的 BroadcastReceiver 中启动服务。

    class MyBroadcastReceiver : BroadcastReceiver() {
      override fun onReceive(context: Context?, intent: Intent?) {
          // Create new Intent to start your service.
      }
    }
    
  4. 本服务可能因后台限制而停止,您可能需要将其置于前台。

注意:代码是 Kotlin 的,但在 Java 中应该类似。