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

  /packages/apps/DeskClock/src/com/android/deskclock/alarms/
AlarmActivity.java 128 private TextView mHintView;
183 mHintView = (TextView) mContentView.findViewById(R.id.hint);
399 mHintView.setText(hintResId);
400 if (mHintView.getVisibility() != View.VISIBLE) {
401 mHintView.setVisibility(View.VISIBLE);
402 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 94 milliseconds