I'm working on an appWidget
which has a textView
, all i want is preview this textView
in a new activity that i launch with
Intent configIntent = new Intent(context, ViewFromWidget.class);
configIntent.setAction(ACTION_WIDGET_CONFIGURE);
PendingIntent myPendingIntent = PendingIntent.getActivity(context, 0, configIntent, 0);
remoteViews.setOnClickPendingIntent(R.id.widgetLayout, myPendingIntent);
Can some one point me out on how can i send a string to the new activity that u start via appWidget?