/frameworks/base/tests/BiDiTests/src/com/android/bidi/ |
H A D | BiDiTestTextViewDrawablesLtr.java | 28 private View currentView; field in class:BiDiTestTextViewDrawablesLtr 34 currentView = inflater.inflate(R.layout.textview_drawables_ltr, container, false); 35 return currentView; 42 textViewError = (TextView) currentView.findViewById(R.id.textview_error);
|
H A D | BiDiTestTextViewDrawablesRtl.java | 28 private View currentView; field in class:BiDiTestTextViewDrawablesRtl 34 currentView = inflater.inflate(R.layout.textview_drawables_rtl, container, false); 35 return currentView; 42 textViewError = (TextView) currentView.findViewById(R.id.textview_error);
|
H A D | BiDiTestBasic.java | 33 private View currentView; field in class:BiDiTestBasic 40 currentView = inflater.inflate(R.layout.basic, container, false); 41 return currentView; 48 alertDialogButton = (Button) currentView.findViewById(R.id.button_alert_dialog); 59 AlertDialog.Builder builder = new AlertDialog.Builder(currentView.getContext()); 65 EditText urlEdit = (EditText) currentView.findViewById(R.id.edittext_url);
|
H A D | BiDiTestGridLayoutCodeLtr.java | 47 private FrameLayout currentView; field in class:BiDiTestGridLayoutCodeLtr 52 currentView = (FrameLayout) inflater.inflate(R.layout.grid_layout_code, container, false); 53 return currentView; 59 currentView.addView(create(currentView.getContext()));
|
H A D | BiDiTestGridLayoutCodeRtl.java | 47 private FrameLayout currentView; field in class:BiDiTestGridLayoutCodeRtl 52 currentView = (FrameLayout) inflater.inflate(R.layout.grid_layout_code, container, false); 53 return currentView; 59 currentView.addView(create(currentView.getContext()));
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
H A D | NavigationBarTransitions.java | 73 View currentView = mView.getCurrentView(); 74 if (currentView != null) { 75 mNavButtons = currentView.findViewById(R.id.nav_buttons); 79 View currentView = mView.getCurrentView(); 80 if (currentView != null) { 81 mNavButtons = currentView.findViewById(R.id.nav_buttons);
|
H A D | ButtonDispatcher.java | 267 public void setCurrentView(View currentView) { argument 268 mCurrentView = currentView.findViewById(mId);
|
/frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/ |
H A D | LinearSnapHelper.java | 75 final View currentView = findSnapView(layoutManager); 76 if (currentView == null) { 80 final int currentPosition = layoutManager.getPosition(currentView);
|
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/ |
H A D | DatePickerDialog.java | 216 int currentView = MONTH_AND_DAY_VIEW; 221 currentView = savedInstanceState.getInt(KEY_CURRENT_VIEW); 264 setCurrentView(currentView); 267 if (currentView == MONTH_AND_DAY_VIEW) { 269 } else if (currentView == YEAR_VIEW) {
|
/frameworks/base/core/java/android/widget/ |
H A D | DatePickerCalendarDelegate.java | 559 final int currentView = ss.getCurrentView(); 560 setCurrentView(currentView); 564 if (currentView == VIEW_MONTH_DAY) { 566 } else if (currentView == VIEW_YEAR) {
|
H A D | DatePicker.java | 702 long maxDate, int currentView, int listPosition, int listPositionOffset) { 709 mCurrentView = currentView; 701 SavedState(Parcelable superState, int year, int month, int day, long minDate, long maxDate, int currentView, int listPosition, int listPositionOffset) argument
|
/frameworks/base/services/autofill/java/com/android/server/autofill/ |
H A D | Session.java | 2333 final ViewState currentView = mViewStates.get(mCurrentViewId); 2334 currentView.maybeCallOnFillReady(flags);
|