Home
last modified time | relevance | path

Searched refs:currentView (Results 1 – 12 of 12) 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()
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()
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()
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()
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()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DNavigationBarTransitions.java73 View currentView = mView.getCurrentView(); in NavigationBarTransitions() local
74 if (currentView != null) { in NavigationBarTransitions()
75 mNavButtons = currentView.findViewById(R.id.nav_buttons); in NavigationBarTransitions()
79 View currentView = mView.getCurrentView(); in NavigationBarTransitions() local
80 if (currentView != null) { in NavigationBarTransitions()
81 mNavButtons = currentView.findViewById(R.id.nav_buttons); in NavigationBarTransitions()
DButtonDispatcher.java267 public void setCurrentView(View currentView) {
268 mCurrentView = currentView.findViewById(mId);
/frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
DLinearSnapHelper.java75 final View currentView = findSnapView(layoutManager); in findTargetSnapPosition() local
76 if (currentView == null) { in findTargetSnapPosition()
80 final int currentPosition = layoutManager.getPosition(currentView); in findTargetSnapPosition()
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
DDatePickerDialog.java216 int currentView = MONTH_AND_DAY_VIEW; in onCreateView() local
221 currentView = savedInstanceState.getInt(KEY_CURRENT_VIEW); in onCreateView()
264 setCurrentView(currentView); in onCreateView()
267 if (currentView == MONTH_AND_DAY_VIEW) { in onCreateView()
269 } else if (currentView == YEAR_VIEW) { in onCreateView()
/frameworks/base/core/java/android/widget/
DDatePickerCalendarDelegate.java559 final int currentView = ss.getCurrentView(); in onRestoreInstanceState() local
560 setCurrentView(currentView); in onRestoreInstanceState()
564 if (currentView == VIEW_MONTH_DAY) { in onRestoreInstanceState()
566 } else if (currentView == VIEW_YEAR) { in onRestoreInstanceState()
DDatePicker.java702 long maxDate, int currentView, int listPosition, int listPositionOffset) { in SavedState() argument
709 mCurrentView = currentView; in SavedState()
/frameworks/base/services/autofill/java/com/android/server/autofill/
DSession.java2333 final ViewState currentView = mViewStates.get(mCurrentViewId); in processResponseLocked() local
2334 currentView.maybeCallOnFillReady(flags); in processResponseLocked()