Merge "Fix Settings Condition expand button a11y label" into nyc-dev

am: 51b1e05

* commit '51b1e0515d64adf3e330437960546465c0f4c7d3':
  Fix Settings Condition expand button a11y label

Change-Id: I3ce32065454d5b5e0bf58954e03ff88b8e205a1a
This commit is contained in:
Clara Bayarri
2016-04-27 19:26:54 +00:00
committed by android-build-merger
2 changed files with 8 additions and 0 deletions

View File

@@ -71,6 +71,8 @@ public class ConditionAdapterUtils {
ImageView expand = (ImageView) view.itemView.findViewById(R.id.expand_indicator);
expand.setTag(condition);
expand.setImageResource(isExpanded ? R.drawable.ic_expand_less : R.drawable.ic_expand_more);
expand.setContentDescription(expand.getContext().getString(isExpanded
? R.string.condition_expand_hide : R.string.condition_expand_show));
expand.setOnClickListener(onExpandListener);
View detailGroup = view.itemView.findViewById(R.id.detail_group);