在点击时执行代码的小部件



我想在单击小部件的图标时执行代码。
小部件具有以下布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center_horizontal"
    android:layout_margin="8dip" >
    <ImageView
        android:id="@+id/update"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:layout_margin="4dip"
        android:src="@drawable/ic_widget" />
</LinearLayout>

我需要在单击 ImageView 时执行代码。
这是小部件的代码:

public class MyWidget extends AppWidgetProvider {
    private static final String WIDGET_BUTTON = "MyWidget.WIDGET_BUTTON";
    @Override
    public void onUpdate(Context context, AppWidgetManager appWidgetManager,
                         int[] appWidgetIds) {
        RemoteViews remoteViews =
                new RemoteViews( context.getPackageName(), R.layout.widget );
        remoteViews.setImageViewResource(R.id.update, R.drawable.ic_widget);
        ComponentName myWidget =
                new ComponentName(context, Button.class);
        Intent intent = new Intent(context, SecurityWidget.class);
        intent.setAction(WIDGET_BUTTON);
        PendingIntent pendingIntent = PendingIntent.getBroadcast(context, 0, intent,
                PendingIntent.FLAG_UPDATE_CURRENT);
        remoteViews.setOnClickPendingIntent(R.id.update, pendingIntent);
        appWidgetManager.updateAppWidget( myWidget, remoteViews);
    }
    @Override
    public void onReceive(Context context, Intent intent)
    {
        super.onReceive(context, intent);
        if (WIDGET_BUTTON.equals(intent.getAction())) {
            //your code here
            Toast.makeText(context, "EXAMPLE, Toast.LENGTH_LONG).show();
        }
    }
}

以下是在 AndroidManifest 中创建小部件的方式:

<receiver
        android:icon="@drawable/ic_widget"
        android:label="My Widget"
        android:name="MyWidget" >
        <intent-filter >
            <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
            <action android:name="MyWidget.WIDGET_BUTTON" />
        </intent-filter>
        <meta-data
            android:name="android.appwidget.provider"
            android:resource="@xml/widget_info" />
    </receiver>

它不起作用。"onReceive"代码仅在我从主屏幕添加或删除小部件时触发。

这不应该MyWidget.class代替Button.class吗?

ComponentName myWidget =
                new ComponentName(context, Button.class); 

相关内容

  • 没有找到相关文章

最新更新