Home
last modified time | relevance | path

Searched refs:arrow (Results 1 – 14 of 14) sorted by relevance

/packages/apps/DeskClock/src/com/android/deskclock/alarms/dataadapter/
DCollapsedAlarmViewHolder.java78 arrow.setOnClickListener(new View.OnClickListener() { in CollapsedAlarmViewHolder()
174 arrow.setVisibility(View.VISIBLE); in onAnimateChange()
175 arrow.setTranslationY(0f); in onAnimateChange()
177 arrow.jumpDrawablesToCurrentState(); in onAnimateChange()
186 arrow.setVisibility(View.INVISIBLE); in createExpandingAnimator()
226 final View oldArrow = oldHolder.arrow; in createCollapsingAnimator()
228 final Rect newArrowRect = new Rect(0, 0, arrow.getWidth(), arrow.getHeight()); in createCollapsingAnimator()
229 ((ViewGroup) newView).offsetDescendantRectToMyCoords(arrow, newArrowRect); in createCollapsingAnimator()
232 arrow.setTranslationY(arrowTranslationY); in createCollapsingAnimator()
233 arrow.setVisibility(View.VISIBLE); in createCollapsingAnimator()
[all …]
DExpandedAlarmViewHolder.java122 arrow.setOnClickListener(new View.OnClickListener() { in ExpandedAlarmViewHolder()
285 ObjectAnimator.ofFloat(arrow, TRANSLATION_Y, 0f)); in onAnimateChange()
309 arrow.setTranslationY(translationY); in setTranslationY()
333 arrow.setVisibility(View.VISIBLE); in onAnimateChange()
334 arrow.setTranslationY(0f); in onAnimateChange()
336 arrow.jumpDrawablesToCurrentState(); in onAnimateChange()
343 arrow.setVisibility(View.INVISIBLE); in createCollapsingAnimator()
421 final View oldArrow = oldHolder.arrow; in createExpandingAnimator()
423 final Rect newArrowRect = new Rect(0, 0, arrow.getWidth(), arrow.getHeight()); in createExpandingAnimator()
424 ((ViewGroup) newView).offsetDescendantRectToMyCoords(arrow, newArrowRect); in createExpandingAnimator()
[all …]
DAlarmItemViewHolder.java54 public final ImageView arrow; field in AlarmItemViewHolder
62 arrow = (ImageView) itemView.findViewById(R.id.arrow); in AlarmItemViewHolder()
/packages/apps/DocumentsUI/src/com/android/documentsui/sorting/
DHeaderCell.java80 ImageView arrow = (ImageView) findViewById(R.id.sort_arrow); in onBind() local
83 arrow.setVisibility(View.GONE); in onBind()
86 showArrow(arrow, R.animator.arrow_rotate_up, in onBind()
90 showArrow(arrow, R.animator.arrow_rotate_down, in onBind()
104 ImageView arrow, @AnimatorRes int anim, @StringRes int contentDescriptionId) { in showArrow() argument
105 arrow.setVisibility(View.VISIBLE); in showArrow()
108 arrow.setContentDescription(description); in showArrow()
112 animator.setTarget(arrow.getDrawable().mutate()); in showArrow()
/packages/apps/Launcher3/src/com/android/launcher3/views/
DArrowTipView.java106 View arrowView = findViewById(R.id.arrow); in init()
148 R.id.arrow).getLayoutParams(); in show()
/packages/inputmethods/LatinIME/dictionaries/
Den_emoji.combined.gz ... 146 shortcut=✎,f=14 147 word=arrow,f=105,not_a_word=true 148 shortcut ...
Den_GB_wordlist.combined.gz1dictionary=main:en_gb,locale=en_GB,description=English (UK),date ...
Den_US_wordlist.combined.gz1dictionary=main:en_us,locale=en_US,description=English (US),date ...
Den_wordlist.combined.gz1dictionary=main:en,locale=en,description=English,date=1414726273, ...
Dda_wordlist.combined.gz1dictionary=main:da,locale=da,description=Dansk,date=1393228134, ...
Dpl_wordlist.combined.gz1dictionary=main:pl,locale=pl,description=Polski,date=1414726264, ...
Dfi_wordlist.combined.gz1dictionary=main:fi,locale=fi,description=Suomi,date=1393228135, ...
Dfr_wordlist.combined.gz1dictionary=main:fr,locale=fr,description=Français,date=1414726264, ...
/packages/apps/Contacts/src/com/android/contacts/quickcontact/
DExpandingEntryCardView.java307 mExpandCollapseArrow = (ImageView) mExpandCollapseButton.findViewById(R.id.arrow); in ExpandingEntryCardView()