kswebd

Lurker
May 19, 2011
1
0
5
I have this code setup in my app widget and I have listed the activity it should launch below. I can't for the life of me get the activity to launch when the button is clicked. Nothing happens when I click on it.


public class MyAppWidget extends AppWidgetProvider
{
public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds)
{
RemoteViews remoteViews = new RemoteViews(context.getPackageName(), R.layout.main);

Intent intent = new Intent(context, EditActivity.class);
PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, intent, Intent.FLAG_ACTIVITY_NEW_TASK);
remoteViews.setOnClickPendingIntent(R.id.btnEditConfiguration, pendingIntent);

appWidgetManager.updateAppWidget(thisWidget, remoteViews);
}
}

public class EditActivity extends Activity
{
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.configure);
}
}