You can open the app screen from widget by bleow code..and for trasfer data from widget to app...u need to first save data to preference and then use it in app.
public class WatchWidget extends AppWidgetProvider {
public void onUpdate( Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds )
{
Intent intent = new Intent(context, show.class);
PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, intent, 0);
RemoteViews remoteViews;
ComponentName watchWidget;
remoteViews = new RemoteViews( context.getPackageName(), R.layout.widget_layout );
remoteViews.setOnClickPendingIntent(R.id.root, pendingIntent);
watchWidget = new ComponentName( context, WatchWidget.class );