Can anyone help me please?
I want my code to work in a way where when I click on a textview in must take me to a new activity.
// Create an Intent to launch ExampleActivity
Intent intent = new Intent(context, BrowserActivity.class);
intent.setData(Uri.parse(ListNewsActivity.news.get(0).getLink()));
PendingIntent pendingIntent = PendingIntent.getActivity(context, 0,
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.widget1);
views.setOnClickPendingIntent(R.id.button, pendingIntent);