commit | 23942c04851276160ba843ee80c9833f57a4cdcc | [log] [tgz] |
---|---|---|
author | Walter Jang <wjang@google.com> | Fri Sep 25 10:53:41 2015 -0700 |
committer | Walter Jang <wjang@google.com> | Fri Sep 25 10:53:41 2015 -0700 |
tree | b595a5b6f424ea77ec61c04c2daafc93cb787e02 | |
parent | f10ca15ffa550b36805d2330fc210b58601a215c [diff] |
Update LabeledEditor text color when it becomes empty/non-empty (E11) Bug 23898909 Bug 23589603 Change-Id: I72cfd5b3ad3e072de14accc0ea938b2a12dada85
diff --git a/src/com/android/contacts/editor/LabeledEditorView.java b/src/com/android/contacts/editor/LabeledEditorView.java index 931d7cf..244b682 100644 --- a/src/com/android/contacts/editor/LabeledEditorView.java +++ b/src/com/android/contacts/editor/LabeledEditorView.java
@@ -378,6 +378,9 @@ if (mIsDeletable) mDeleteContainer.setVisibility(View.VISIBLE); } mWasEmpty = isEmpty; + + // Update the label text color + mEditTypeAdapter.notifyDataSetChanged(); } }