Make the AutoFill profile editor TableLayout shrinkable
The table column containing the EditText widgets needs to be both
stretchable (to fill the full space when it has a short string in
it) and also shrinkable so that it doesn't expand beyond the
bounds of the parent if it has a long string in it.
Bug: 3236646
Change-Id: Id3e5beb2d9cb53c56a3a5d397b6e4c163a038938
diff --git a/res/layout/autofill_settings_fragment.xml b/res/layout/autofill_settings_fragment.xml
index bdffebb..b0e0f53 100644
--- a/res/layout/autofill_settings_fragment.xml
+++ b/res/layout/autofill_settings_fragment.xml
@@ -38,6 +38,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
+ android:shrinkColumns="1"
android:stretchColumns="1">
<TableRow
android:layout_height="match_parent"