问题描述
|
我正在android 2.2上开发应用程序。我的应用程序显示小部件上的作业计数。当我单击此小部件时,用户必须重定向到网站。
在这里,我们如何实现窗口小部件的单击事件,该事件具有带有TextView的背景图像。
请帮助我。
解决方法
查看以下教程
http://developer.android.com/guide/topics/appwidgets/index.html
您正在寻找AppWidgetProvider的onUpdate事件。上面的页面上有一部分。基本上,您可以在AppWidgetProvider类中执行以下操作。
public void onUpdate(Context context,AppWidgetManager appWidgetManager,int[] appWidgetIds) {
/* loop through each widgets created by this provider and do the following */
Intent intent = new Intent(context,ExampleActivity.class);
PendingIntent pendingIntent = PendingIntent.getActivity(context,intent,0);
// Get the layout for the App Widget and attach an on-click listener to the button
RemoteViews views = new RemoteViews(context.getPackageName(),R.layout.appwidget_provider_layout);
views.setOnClickPendingIntent(R.id.button,pendingIntent);
}