add a contact searching field at the New Message activity

This commit is contained in:
tibbi 2020-04-05 17:16:48 +02:00
parent 251eca8823
commit 3373ce66e1
3 changed files with 29 additions and 12 deletions

View file

@ -4,4 +4,23 @@
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.simplemobiletools.commons.views.MyEditText
android:id="@+id/new_message_to"
android:layout_width="match_parent"
android:layout_height="@dimen/normal_icon_size"
android:layout_marginStart="@dimen/activity_margin"
android:layout_marginEnd="@dimen/activity_margin"
android:background="@android:color/transparent"
android:gravity="center_vertical"
android:hint="@string/send_to"
android:inputType="textCapWords" />
<View
android:id="@+id/message_divider"
android:layout_width="match_parent"
android:layout_height="1px"
android:layout_below="@+id/new_message_to"
android:background="@color/divider_grey"
android:importantForAccessibility="no" />
</RelativeLayout>