Home
last modified time | relevance | path

Searched refs:mLabelView (Results 1 – 5 of 5) sorted by relevance

/packages/apps/ContactsCommon/src/com/android/contacts/common/list/
DContactListItemView.java183 private TextView mLabelView; field in ContactListItemView
488 if (isVisible(mLabelView)) { in onMeasure()
500 if (isVisible(mLabelView)) { in onMeasure()
513 if (isVisible(mLabelView)) { in onMeasure()
514 mLabelView.measure(MeasureSpec.makeMeasureSpec(labelWidth, MeasureSpec.AT_MOST), in onMeasure()
516 mLabelViewHeight = mLabelView.getMeasuredHeight(); in onMeasure()
815 if (isVisible(mLabelView)) { in onLayout()
817 mLabelView.layout(dataLeftBound, in onLayout()
821 dataLeftBound += mLabelView.getMeasuredWidth() + mGapBetweenLabelAndData; in onLayout()
823 dataLeftBound = leftBound + mLabelView.getMeasuredWidth(); in onLayout()
[all …]
/packages/apps/TV/src/com/android/tv/menu/
DActionCardView.java39 private TextView mLabelView; field in ActionCardView
58 mLabelView = (TextView) findViewById(R.id.action_card_label); in onFinishInflate()
68 mLabelView.setText(action.getActionName(getContext())); in onBind()
73 mLabelView.setAlpha(OPACITY_ENABLED); in onBind()
78 mLabelView.setAlpha(OPACITY_DISABLED); in onBind()
86 Log.d(TAG, "onSelected: action=" + mLabelView.getText()); in onSelected()
93 Log.d(TAG, "onDeselected: action=" + mLabelView.getText()); in onDeselected()
DRecordCardView.java50 private TextView mLabelView; field in RecordCardView
75 mLabelView = (TextView) findViewById(R.id.record_label); in onBind()
109 mLabelView.setText(R.string.channels_item_record_stop); in updateCardView()
112 mLabelView.setText(R.string.channels_item_record_start); in updateCardView()
/packages/apps/Settings/src/com/android/settings/wifi/
DWriteWifiConfigToNfcDialog.java69 private TextView mLabelView; field in WriteWifiConfigToNfcDialog
118 mLabelView = (TextView) mView.findViewById(R.id.password_label); in onCreate()
173 mLabelView.setText(R.string.status_awaiting_tap); in onClick()
178 mLabelView.setText(R.string.status_invalid_password); in onClick()
204 setViewText(mLabelView, R.string.status_write_success); in handleWriteNfcEvent()
207 setViewText(mLabelView, R.string.status_failed_to_write); in handleWriteNfcEvent()
211 setViewText(mLabelView, R.string.status_failed_to_write); in handleWriteNfcEvent()
216 setViewText(mLabelView, R.string.status_tag_not_writable); in handleWriteNfcEvent()
220 setViewText(mLabelView, R.string.status_tag_not_writable); in handleWriteNfcEvent()
/packages/apps/DeskClock/src/com/android/deskclock/timer/
DTimerItem.java46 private TextView mLabelView; field in TimerItem
62 mLabelView = (TextView) findViewById(R.id.timer_label); in onFinishInflate()
84 if (!TextUtils.equals(label, mLabelView.getText())) { in update()
85 mLabelView.setText(label); in update()