在 onclick 上执行代码的小部件
Widget that executes code on onclick
我想在点击小部件的图标时执行代码。
该小部件确实具有此布局:
<?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);
我想在点击小部件的图标时执行代码。
该小部件确实具有此布局:
<?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);