Making item entry width match parent to avoid cut off on long text

Bug:30791342
Change-Id: I83c7a23e11db15a561cd4b741292383b035581c1
diff --git a/res/layout/account_selector_list_item_condensed.xml b/res/layout/account_selector_list_item_condensed.xml
index 6720065..ae91726 100644
--- a/res/layout/account_selector_list_item_condensed.xml
+++ b/res/layout/account_selector_list_item_condensed.xml
@@ -15,7 +15,7 @@
 -->
 
 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
-    android:layout_width="280dp"
+    android:layout_width="match_parent"
     android:layout_height="72dp"
     android:orientation="horizontal">
     <ImageView android:id="@android:id/icon"
@@ -46,8 +46,7 @@
         <TextView android:id="@android:id/text2"
             android:layout_width="wrap_content"
             android:layout_height="wrap_content"
-            android:layout_marginRight="8dip"
-            android:layout_marginEnd="8dip"
+            android:layout_marginEnd="24dp"
             android:textSize="14sp"
             android:textAppearance="?android:attr/textAppearanceSmall"
             android:textColor="?android:attr/textColorSecondary"