Home
last modified time | relevance | path

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

/frameworks/base/tests/BiDiTests/src/com/android/bidi/
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()
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()
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()
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()
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()
/frameworks/base/packages/SystemUI/src/com/android/systemui/temporarydisplay/chipbar/
DChipbarCoordinator.kt129 override fun updateView(newInfo: ChipbarInfo, currentView: ViewGroup) { in <lambda>()
143 currentView.setTag(INFO_TAG, newInfo) in <lambda>()
146 parent = currentView.requireViewById(R.id.chipbar_root_view) in <lambda>()
156 val iconView = currentView.requireViewById<CachingIconView>(R.id.start_icon) in <lambda>()
160 val textView = currentView.requireViewById<TextView>(R.id.text) in <lambda>()
169 val loadingView = currentView.requireViewById<ImageView>(R.id.loading) in <lambda>()
186 currentView.requireViewById<View>(R.id.error).visibility = in <lambda>()
190 val buttonView = currentView.requireViewById<TextView>(R.id.end_button) in <lambda>()
208 currentView in <lambda>()
229 val chipInnerView = currentView.getInnerView() in <lambda>()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/navigationbar/
DNavigationBarTransitions.java88 View currentView = mView.getCurrentView(); in NavigationBarTransitions() local
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()
/frameworks/base/core/java/android/widget/
DRemoteViewsService.java148 final RemoteViews currentView = getViewAt(i); in getRemoteCollectionItems() local
149 currentView.writeToParcel(capSizeTestParcel, 0); in getRemoteCollectionItems()
153 itemsBuilder.addItem(currentItemId, currentView); in getRemoteCollectionItems()
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()
DDatePicker.java720 long maxDate, int currentView, int listPosition, int listPositionOffset) { in SavedState() argument
727 mCurrentView = currentView; in SavedState()
/frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/ui/binder/
DScreenshotShelfViewBinder.kt201 val currentView: View? = actionsContainer.getChildAt(index) in <lambda>() constant
202 if (action.id == currentView?.tag) { in <lambda>()
204 buttonViewBinder.bind(currentView, action) in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/media/taptotransfer/receiver/
DMediaTttChipControllerReceiver.kt203 override fun updateView(newInfo: ChipReceiverInfo, currentView: ViewGroup) { in <lambda>()
233 val iconView = currentView.getAppIconView() in <lambda>()
237 val iconContainerView = currentView.getIconContainerView() in <lambda>()
/frameworks/base/core/java/android/inputmethodservice/navigationbar/
DButtonDispatcher.java285 public void setCurrentView(View currentView) { in setCurrentView() argument
286 mCurrentView = currentView.findViewById(mId); in setCurrentView()
/frameworks/base/packages/SystemUI/src/com/android/systemui/navigationbar/buttons/
DButtonDispatcher.java320 public void setCurrentView(View currentView) { in setCurrentView() argument
321 mCurrentView = currentView.findViewById(mId); in setCurrentView()
/frameworks/base/services/autofill/java/com/android/server/autofill/
DSession.java1965 final ViewState currentView = mViewStates.get(mCurrentViewId); in onSecondaryFillResponse() local
1966 if (currentView != null) { in onSecondaryFillResponse()
1967 currentView.maybeCallOnFillReady(flags); in onSecondaryFillResponse()
2802 final ViewState currentView = mViewStates.get(mCurrentViewId); in requestFallbackFromFillDialog() local
2803 currentView.maybeCallOnFillReady(mFlags); in requestFallbackFromFillDialog()
4387 final ViewState currentView = mViewStates.get(id); in shouldStartNewPartitionLocked() local
4391 return currentView != null && (currentView.getState() in shouldStartNewPartitionLocked()
4853 final ViewState currentView = mViewStates.get(mCurrentViewId); in updateViewStateAndUiOnValueChangedLocked() local
4854 currentView.maybeCallOnFillReady(flags); in updateViewStateAndUiOnValueChangedLocked()
4954 final ViewState currentView = mViewStates.get(mCurrentViewId); in onFillReady() local
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/temporarydisplay/
DTemporaryViewDisplayController.kt439 abstract fun updateView(newInfo: T, currentView: ViewGroup) in <lambda>()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/temporarydisplay/
DTemporaryViewDisplayControllerTest.kt1169 override fun updateView(newInfo: ViewInfo, currentView: ViewGroup) { in updateView()