Home
last modified time | relevance | path

Searched refs:updateViews (Results 1 – 3 of 3) sorted by relevance

/development/samples/WiktionarySimple/src/com/example/android/simplewiktionary/
DWordWidget.java55 RemoteViews updateViews = buildUpdate(this); in onStart() local
60 manager.updateAppWidget(thisWidget, updateViews); in onStart()
79 RemoteViews updateViews = null; in buildUpdate() local
97 updateViews = new RemoteViews(context.getPackageName(), R.layout.widget_word); in buildUpdate()
100 updateViews.setTextViewText(R.id.word_title, wordTitle); in buildUpdate()
101 updateViews.setTextViewText(R.id.word_type, matcher.group(2)); in buildUpdate()
102 updateViews.setTextViewText(R.id.definition, matcher.group(3).trim()); in buildUpdate()
110 updateViews.setOnClickPendingIntent(R.id.widget, pendingIntent); in buildUpdate()
114 updateViews = new RemoteViews(context.getPackageName(), R.layout.widget_message); in buildUpdate()
116 updateViews.setTextViewText(R.id.message, errorMessage); in buildUpdate()
[all …]
/development/apps/BuildWidget/src/com/android/buildwidget/
DBuildWidget.java53 RemoteViews updateViews = buildUpdate(this); in onStart() local
58 manager.updateAppWidget(thisWidget, updateViews); in onStart()
64 RemoteViews updateViews = new RemoteViews( in buildUpdate() local
71 updateViews.setOnClickPendingIntent(R.id.widget, pendingIntent); in buildUpdate()
73 updateViews.setTextViewText(R.id.build_info, android.os.Build.ID); in buildUpdate()
74 updateViews.setTextViewText(R.id.build_date, in buildUpdate()
77 updateViews.setTextViewText(R.id.build_extra, android.os.Build.FINGERPRINT); in buildUpdate()
78 return updateViews; in buildUpdate()
/development/samples/Wiktionary/src/com/example/android/wiktionary/
DWordWidget.java54 RemoteViews updateViews = buildUpdate(this); in onStart() local
59 manager.updateAppWidget(thisWidget, updateViews); in onStart()