HomeSort by relevance Sort by last modified time
    Searched defs:mHintView (Results 1 - 2 of 2) sorted by null

  /packages/apps/DeskClock/src/com/android/deskclock/alarms/
AlarmActivity.java 129 private TextView mHintView;
188 mHintView = (TextView) mContentView.findViewById(R.id.hint);
412 mHintView.setText(hintResId);
413 if (mHintView.getVisibility() != View.VISIBLE) {
414 mHintView.setVisibility(View.VISIBLE);
415 ObjectAnimator.ofFloat(mHintView, View.ALPHA, 0.0f, 1.0f).start();
  /frameworks/base/core/java/android/widget/
AutoCompleteTextView.java 97 private TextView mHintView;
223 if (mHintView == null) {
227 mHintView = hintView;
230 mHintView.setText(hint);
234 mHintView = null;
    [all...]

Completed in 126 milliseconds