Home
last modified time | relevance | path

Searched refs:currentView (Results 1 – 16 of 16) sorted by relevance

/aosp14/frameworks/base/tests/BiDiTests/src/com/android/bidi/
H A DBiDiTestBasic.java33 private View currentView; field in BiDiTestBasic
40 currentView = inflater.inflate(R.layout.basic, container, false); in onCreateView()
41 return currentView; in onCreateView()
48 alertDialogButton = (Button) currentView.findViewById(R.id.button_alert_dialog); in onViewCreated()
59 AlertDialog.Builder builder = new AlertDialog.Builder(currentView.getContext()); in showDialog()
65 EditText urlEdit = (EditText) currentView.findViewById(R.id.edittext_url); in useSpans()
H A DBiDiTestTextViewDrawablesLtr.java28 private View currentView; field in BiDiTestTextViewDrawablesLtr
34 currentView = inflater.inflate(R.layout.textview_drawables_ltr, container, false); in onCreateView()
35 return currentView; in onCreateView()
42 textViewError = (TextView) currentView.findViewById(R.id.textview_error); in onViewCreated()
H A DBiDiTestTextViewDrawablesRtl.java28 private View currentView; field in BiDiTestTextViewDrawablesRtl
34 currentView = inflater.inflate(R.layout.textview_drawables_rtl, container, false); in onCreateView()
35 return currentView; in onCreateView()
42 textViewError = (TextView) currentView.findViewById(R.id.textview_error); in onViewCreated()
H A DBiDiTestGridLayoutCodeLtr.java47 private FrameLayout currentView; field in BiDiTestGridLayoutCodeLtr
52 currentView = (FrameLayout) inflater.inflate(R.layout.grid_layout_code, container, false); in onCreateView()
53 return currentView; in onCreateView()
59 currentView.addView(create(currentView.getContext())); in onViewCreated()
H A DBiDiTestGridLayoutCodeRtl.java47 private FrameLayout currentView; field in BiDiTestGridLayoutCodeRtl
52 currentView = (FrameLayout) inflater.inflate(R.layout.grid_layout_code, container, false); in onCreateView()
53 return currentView; in onCreateView()
59 currentView.addView(create(currentView.getContext())); in onViewCreated()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/temporarydisplay/chipbar/
H A DChipbarCoordinator.kt130 override fun updateView(newInfo: ChipbarInfo, currentView: ViewGroup) {
144 currentView.setTag(INFO_TAG, newInfo)
147 parent = currentView.requireViewById(R.id.chipbar_root_view)
157 val iconView = currentView.requireViewById<CachingIconView>(R.id.start_icon)
161 val textView = currentView.requireViewById<TextView>(R.id.text)
170 val loadingView = currentView.requireViewById<ImageView>(R.id.loading)
187 currentView.requireViewById<View>(R.id.error).visibility =
191 val buttonView = currentView.requireViewById<TextView>(R.id.end_button)
209 currentView
230 val chipInnerView = currentView.getInnerView()
[all …]
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/navigationbar/
H A DNavigationBarTransitions.java88 View currentView = mView.getCurrentView(); in NavigationBarTransitions()
89 if (currentView != null) { in NavigationBarTransitions()
90 mNavButtons = currentView.findViewById(R.id.nav_buttons); in NavigationBarTransitions()
94 View currentView = mView.getCurrentView(); in NavigationBarTransitions() local
95 if (currentView != null) { in NavigationBarTransitions()
96 mNavButtons = currentView.findViewById(R.id.nav_buttons); in NavigationBarTransitions()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/navigationbar/buttons/
H A DRotationContextButton.java76 View currentView = getCurrentView(); in acceptRotationProposal() local
77 return currentView != null && currentView.isAttachedToWindow(); in acceptRotationProposal()
H A DButtonDispatcher.java308 public void setCurrentView(View currentView) { in setCurrentView() argument
309 mCurrentView = currentView.findViewById(mId); in setCurrentView()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/media/taptotransfer/receiver/
H A DMediaTttChipControllerReceiver.kt203 override fun updateView(newInfo: ChipReceiverInfo, currentView: ViewGroup) {
233 val iconView = currentView.getAppIconView()
237 val iconContainerView = currentView.getIconContainerView()
/aosp14/frameworks/base/core/java/android/widget/
H A DDatePickerCalendarDelegate.java569 final int currentView = ss.getCurrentView(); in onRestoreInstanceState() local
570 setCurrentView(currentView); in onRestoreInstanceState()
574 if (currentView == VIEW_MONTH_DAY) { in onRestoreInstanceState()
576 } else if (currentView == VIEW_YEAR) { in onRestoreInstanceState()
H A DDatePicker.java720 long maxDate, int currentView, int listPosition, int listPositionOffset) { in SavedState() argument
727 mCurrentView = currentView; in SavedState()
/aosp14/frameworks/base/core/java/android/inputmethodservice/navigationbar/
H A DButtonDispatcher.java285 public void setCurrentView(View currentView) { in setCurrentView() argument
286 mCurrentView = currentView.findViewById(mId); in setCurrentView()
/aosp14/frameworks/base/services/autofill/java/com/android/server/autofill/
H A DSession.java2556 final ViewState currentView = mViewStates.get(mCurrentViewId); in requestFallbackFromFillDialog() local
2557 currentView.maybeCallOnFillReady(mFlags); in requestFallbackFromFillDialog()
3951 final ViewState currentView = mViewStates.get(id); in shouldStartNewPartitionLocked() local
3953 return currentView != null && (currentView.getState() in shouldStartNewPartitionLocked()
4342 final ViewState currentView = mViewStates.get(mCurrentViewId); in updateViewStateAndUiOnValueChangedLocked() local
4343 currentView.maybeCallOnFillReady(flags); in updateViewStateAndUiOnValueChangedLocked()
4443 final ViewState currentView = mViewStates.get(mCurrentViewId); in onFillReady() local
4444 currentView.setState(ViewState.STATE_FILL_DIALOG_SHOWN); in onFillReady()
4473 currentView.setState(ViewState.STATE_INLINE_SHOWN); in onFillReady()
5307 final ViewState currentView = mViewStates.get(mCurrentViewId); in processResponseLocked() local
[all …]
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/temporarydisplay/
H A DTemporaryViewDisplayController.kt439 abstract fun updateView(newInfo: T, currentView: ViewGroup)
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/temporarydisplay/
H A DTemporaryViewDisplayControllerTest.kt1169 override fun updateView(newInfo: ViewInfo, currentView: ViewGroup) {