Fixed issue that SIM name was not completely displayed in select dialog

Adjust the height of the dialog list item to the string size.

Affected Area:
Import contacts from dialog
Export contacts from dialog
Change photo dialog

Bug: 67879245
Change-Id: Ibeff141044bb42227a3f4025f68d5c01cf75b42c
diff --git a/res/layout/select_dialog_item.xml b/res/layout/select_dialog_item.xml
index 1215aa9..05f2ae5 100644
--- a/res/layout/select_dialog_item.xml
+++ b/res/layout/select_dialog_item.xml
@@ -22,7 +22,8 @@
 <LinearLayout
     xmlns:android="http://schemas.android.com/apk/res/android"
     android:layout_width="match_parent"
-    android:layout_height="56dp"
+    android:layout_height="wrap_content"
+    android:minHeight="56dp"
     android:orientation="vertical"
     android:paddingBottom="8dp"
     android:paddingEnd="24dp"