If you want to create your appwidget for your app, you can use this starter sample. If you think to just put two TextView on screen, again use ListView. Because if your text lenght is dynamic you cant control your area size and cant add simply Scrollview. Scrollview doesn't support inside appwidgets.
StackWidget Sample - import project with Android Studio
Google Developer Training Sample
- Updates requested with updatePeriodMillis will not be delivered more than once every 30 minutes.
- If you think android:updatePeriodMillis not working, don't forgot to add android:exported="true" at your receiver. After that if onUpdate not triggered check super.onReceive inside onReceive method.
- If you want to update your widget more than once every 30 minutes , you must use AlarmManager and set android:updatePeriodMillis to 0
Intent alarm = new Intent(context, WidgetProvider.class);
alarm.setAction(AppWidgetManager.ACTION_APPWIDGET_UPDATE);
alarm.putExtra(AppWidgetManager.EXTRA_APPWIDGET_IDS, appWidgetIds);
pendingIntent = PendingIntent.getBroadcast(context, 0, alarm, PendingIntent.FLAG_CANCEL_CURRENT);
alarmManager.setRepeating(AlarmManager.RTC, System.currentTimeMillis(),1000, pendingIntent);
You can update your appwidget inside from Activity or Fragment
AppWidgetManager appWidgetManager = AppWidgetManager.getInstance(context);
int appWidgetIds[] = appWidgetManager.getAppWidgetIds(new ComponentName(context, WidgetProvider.class));
appWidgetManager.notifyAppWidgetViewDataChanged(appWidgetIds, R.id.widget_list);
If you aren't use ListView , you can update with
AppWidgetManager appWidgetManager = AppWidgetManager.getInstance(context.getApplicationContext());
int[] appWidgetIds = appWidgetManager.getAppWidgetIds(new ComponentName(context.getApplicationContext(), WidgetProvider.class));
if (appWidgetIds.length > 0) {
new WidgetProvider().onUpdate(context.getApplicationContext(), appWidgetManager, appWidgetIds);
}