add a contact searching field at the New Message activity
This commit is contained in:
parent
251eca8823
commit
3373ce66e1
3 changed files with 29 additions and 12 deletions
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -3,7 +3,10 @@
|
|||
<string name="app_launcher_name">SMS Messenger</string>
|
||||
<string name="type_a_message">Type a message…</string>
|
||||
<string name="message_not_sent">Message has not been sent.</string>
|
||||
|
||||
<!-- New message -->
|
||||
<string name="create_new_message">Create new message</string>
|
||||
<string name="send_to">To…</string>
|
||||
|
||||
<!-- Notifications -->
|
||||
<string name="channel_received_sms">Received SMS</string>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue