Home
last modified time | relevance | path

Searched refs:label (Results 1 – 15 of 15) sorted by relevance

/developers/samples/android/wearable/wear/WatchFace/Application/src/main/java/com/example/android/wearable/watchface/
DOpenGLWatchFaceConfigActivity.java39 TextView label = (TextView) findViewById(R.id.label); in onCreate() local
40 label.setText(label.getText() + " (" + name.getClassName() + ")"); in onCreate()
DDigitalWatchFaceCompanionConfigActivity.java76 TextView label = (TextView)findViewById(R.id.label); in onCreate() local
77 label.setText(label.getText() + " (" + name.getClassName() + ")"); in onCreate()
/developers/samples/android/deprecated/wearable/wear/Timer/Wearable/src/main/java/com/example/android/wearable/timer/
DSetTimerActivity.java176 private String label; field in SetTimerActivity.ListViewItem
178 public ListViewItem(String label, long duration) { in ListViewItem() argument
179 this.label = label; in ListViewItem()
185 return label; in toString()
207 view.setText(mTimeOptions[position].label); in onBindViewHolder()
/developers/build/templates/CardStream/_MODULE_/src/template/java/_PACKAGE_/cardstream/
DCard.java.ftl236 * Set the label text for the progress if the card has a progress type of
269 * @param label
273 private void addAction(String label, int id, int type) {
275 cardAction.label = label;
417 * @param label The text to display for this action
422 public Builder addAction(String label, int id, int type) {
423 mCard.addAction(label, id, type);
449 * <li>{@link #PROGRESS_TYPE_LABEL} only displays a label text in the progress area
461 public Builder setProgressLabel(String label) {
466 mCard.mCardProgress.label = label;
[all …]
/developers/samples/android/input/autofill/AutofillFramework/Application/src/main/java/com/example/android/autofill/app/edgecases/
DAbstractMultipleStepsActivity.java130 TextView label = (TextView) mSteps[i].getChildAt(0); in finishIt() local
132 … message.append(getString(R.string.message_step_description, label.getText(), input.getText())) in finishIt()
160 TextView label = new TextView(this); in newStep() local
161 label.setText(labelId); in newStep()
162 layout.addView(label); in newStep()
/developers/samples/android/ui/actionbarcompat/ActionBarCompat-SearchView/src/main/src/com/example/android/actionbarcompat/searchview/
DAppListFragment.java102 if (p.matcher(application.label).matches()) { in setFilterQuery()
145 .setText(item.label); in getView()
171 final CharSequence label; field in AppListFragment.ApplicationItem
178 this.label = applicationInfo.loadLabel(packageManager); in ApplicationItem()
/developers/build/templates/create/_MODULE_/src/main/
DAndroidManifest.xml.ftl23 android:label="@string/app_name"
28 android:label="@string/app_name">
/developers/samples/android/input/multitouch/BasicMultitouch/Application/src/main/java/com/example/android/basicmultitouch/
DTouchDisplayView.java58 public String label = null; field in TouchDisplayView.TouchHistory
156 data.label = "id: " + 0; in onTouchEvent()
186 data.label = "id: " + id; in onTouchEvent()
397 canvas.drawText(data.label, data.x + radius, data.y in drawCircle()
/developers/samples/android/deprecated/wearable/wear/Notifications/Application/src/main/java/com/example/android/support/wearable/notifications/
DBackgroundPickers.java63 TextView label = (TextView) picker.findViewById(R.id.bg_picker_label); in generatePickers() local
64 label.setText(String.format(res.getString(R.string.bg_picker_label), i+1)); in generatePickers()
/developers/samples/android/input/autofill/AutofillFramework/kotlinApp/Application/src/main/java/com/example/android/autofillframework/app/
DCustomVirtualView.kt168 private fun addLine(idEntry: String, label: String, hints: Array<String>, text: String, in addLine()
169 sanitized: Boolean) = Line(idEntry, label, hints, text, sanitized).also { in addLine()
196 private inner class Line constructor(val idEntry: String, label: String, hints: Array<String>,
201 … var labelItem: Item = Item(this, ++nextId, null, View.AUTOFILL_TYPE_NONE, label, false, true)
/developers/samples/android/input/autofill/AutofillFramework/Application/src/main/java/com/example/android/autofill/app/view/autofillable/
DAbstractCustomVirtualView.java330 public Line addLine(String idEntryPrefix, int autofillType, String label, String text, in addLine() argument
334 Line line = new Line(idEntryPrefix, autofillType, label, autofillHints, text, in addLine()
372 private Line(String idEntryPrefix, int autofillType, String label, String[] hints, in Line() argument
376 AUTOFILL_TYPE_NONE, label, false, true); in Line()
/developers/build/templates/CardStream/_MODULE_/
DREADME-CardStream.txt54 -To implement an action, use Builder.addAction with a label, id, type (Neutral/Positive/Negative) a…
/developers/samples/android/sensors/BatchStepSensor/Application/
DREADME-CardStream.txt54 -To implement an action, use Builder.addAction with a label, id, type (Neutral/Positive/Negative) a…
/developers/samples/android/wearable/wear/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/config/
DDigitalWatchFaceWearableConfigActivity.java229 mLabel = (TextView) findViewById(R.id.label); in ColorItem()
/developers/samples/android/input/autofill/AutofillFramework/Application/src/main/java/com/example/android/autofill/app/commoncases/
DRecyclerViewActivity.java245 mLabel = itemView.findViewById(R.id.label); in FieldViewHolder()