mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-23 18:15:22 +00:00
6da86e482d
Allow source selection for sending SMS/MMS, and display the SIM that received SMS/MMS. Fixes #555 Closes #5199 // FREEBIE
45 lines
1.9 KiB
XML
45 lines
1.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:orientation="horizontal"
|
|
android:layout_width="@dimen/transport_selection_popup_width"
|
|
android:layout_height="60dp"
|
|
android:gravity="center_vertical"
|
|
android:paddingLeft="10dp"
|
|
android:paddingRight="10dp">
|
|
|
|
<ImageView android:id="@+id/icon"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:padding="7dp"
|
|
android:background="@drawable/circle_tintable"
|
|
android:contentDescription="@string/transport_selection_list_item__transport_icon"
|
|
tools:src="@drawable/ic_send_push_white_24dp"
|
|
tools:backgroundTint="@color/textsecure_primary" />
|
|
|
|
<LinearLayout android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center_vertical"
|
|
android:paddingLeft="10dp">
|
|
|
|
<TextView android:id="@+id/text"
|
|
android:fontFamily="sans-serif-light"
|
|
android:textSize="16sp"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
tools:text="TextSecure" />
|
|
|
|
<TextView android:id="@+id/subtext"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:fontFamily="sans-serif-light"
|
|
android:textSize="12dp"
|
|
android:visibility="gone"
|
|
tools:text="From Home"
|
|
tools:visibility="visible"/>
|
|
|
|
</LinearLayout>
|
|
</LinearLayout>
|