Home
last modified time | relevance | path

Searched refs:actionView (Results 1 – 7 of 7) sorted by relevance

/packages/apps/Dialer/java/com/android/dialer/widget/
DEmptyContentView.java42 private TextView actionView; field in EmptyContentView
67 actionView = (TextView) findViewById(R.id.empty_list_view_action); in EmptyContentView()
68 actionView.setOnClickListener(this); in EmptyContentView()
97 actionView.setText(null); in setActionLabel()
98 actionView.setVisibility(View.GONE); in setActionLabel()
100 actionView.setText(resourceId); in setActionLabel()
101 actionView.setVisibility(View.VISIBLE); in setActionLabel()
112 || actionView.getVisibility() == View.VISIBLE; in isShowingContent()
/packages/apps/Car/systemlibs/car-qc-lib/src/com/android/car/qc/view/
DQCRowView.java315 private void initActionItem(@NonNull ViewGroup root, @Nullable View actionView, in initActionItem() argument
318 initSwitchView(action, root, actionView); in initActionItem()
320 initToggleView(action, root, actionView); in initActionItem()
324 private void initSwitchView(QCActionItem action, ViewGroup root, View actionView) { in initSwitchView() argument
325 Switch switchView = actionView == null ? null : actionView.findViewById( in initSwitchView()
328 actionView = createActionView(root, actionView, R.layout.qc_action_switch); in initSwitchView()
329 switchView = actionView.requireViewById(android.R.id.switch_widget); in initSwitchView()
357 private void initToggleView(QCActionItem action, ViewGroup root, View actionView) { in initToggleView() argument
359 actionView == null ? null : actionView.findViewById(R.id.qc_toggle_button); in initToggleView()
361 actionView = createActionView(root, actionView, R.layout.qc_action_toggle); in initToggleView()
[all …]
/packages/modules/HealthFitness/apk/src/com/android/healthconnect/controller/datasources/appsources/
DAppSourcesAdapter.kt143 private val actionView: View in <lambda>() constant
149 actionView = itemView.findViewById(R.id.action_icon) in <lambda>()
180 actionView.isClickable = true in <lambda>()
181 actionView.visibility = View.VISIBLE in <lambda>()
187 actionView.setOnTouchListener(null) in <lambda>()
188 actionView.setOnClickListener { in <lambda>()
214 actionView.visibility = View.INVISIBLE in <lambda>()
215 actionView.isClickable = false in <lambda>()
220 actionView.setOnClickListener(null) in <lambda>()
221 actionView.setOnTouchListener { _, event -> in <lambda>()
/packages/apps/DocumentsUI/tests/common/com/android/documentsui/testing/
DTestMenuItem.java42 View actionView; field in TestMenuItem
90 final public MenuItem setActionView(View actionView) { in setActionView() argument
91 this.actionView = actionView; in setActionView()
97 return this.actionView; in getActionView()
/packages/apps/Launcher3/src/com/android/launcher3/views/
DSnackbar.java127 TextView actionView = snackbar.findViewById(R.id.action); in show() local
131 actionWidth = actionView.getPaint().measureText(actionText) in show()
132 + actionView.getPaddingRight() + actionView.getPaddingLeft(); in show()
133 actionView.setText(actionText); in show()
134 actionView.setOnClickListener(v -> { in show()
143 actionView.setVisibility(GONE); in show()
161 actionView.getLayoutParams().height = textHeight * 2; in show()
163 actionView.setTextSize(TypedValue.COMPLEX_UNIT_PX, textSizePx); in show()
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/widget/
DBottomActionBar.java288 setActionClickListener(action, actionView -> { in bindBottomSheetContentWithAction()
292 mBottomSheetView.setAccessibilityTraversalAfter(actionView.getId()); in bindBottomSheetContentWithAction()
/packages/modules/HealthFitness/apk/src/com/android/healthconnect/controller/permissions/connectedapps/searchapps/
DSearchAppsFragment.kt105 searchView = searchMenuItem.actionView as SearchView in <lambda>()