String character limit and description updates
am: c5c4045572
Change-Id: Icda690b75bf2bb7e49cfea51ca9b4883aeda0c72
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 285774d..5bdf99d 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -16,8 +16,8 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.contacts"
- android:versionCode="10613"
- android:versionName="1.6.13">
+ android:versionCode="10700"
+ android:versionName="1.7.0">
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="25" />
diff --git a/res/layout/fragment_sim_import.xml b/res/layout/fragment_sim_import.xml
index 6688898..168bf22 100644
--- a/res/layout/fragment_sim_import.xml
+++ b/res/layout/fragment_sim_import.xml
@@ -54,6 +54,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?android:colorBackground"
+ android:focusable="true"
android:minHeight="48dp"
android:orientation="horizontal"
android:paddingEnd="@dimen/activity_horizontal_margin"
diff --git a/src/com/android/contacts/editor/AccountHeaderPresenter.java b/src/com/android/contacts/editor/AccountHeaderPresenter.java
index 440df94..61a440f 100644
--- a/src/com/android/contacts/editor/AccountHeaderPresenter.java
+++ b/src/com/android/contacts/editor/AccountHeaderPresenter.java
@@ -189,6 +189,9 @@
UiClosables.closeQuietly(popup);
final AccountWithDataSet newAccount = adapter.getItem(position);
setCurrentAccount(newAccount);
+ // Make sure the new selection will be announced once it's changed
+ mAccountHeaderContainer.setAccessibilityLiveRegion(
+ View.ACCESSIBILITY_LIVE_REGION_POLITE);
}
});
mAccountHeaderContainer.post(new Runnable() {