2014-07-19 02:31:03 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2015-07-01 00:45:39 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2014-07-19 02:31:03 +00:00
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_width="@dimen/transport_selection_popup_width"
|
|
|
|
android:layout_height="60dp"
|
|
|
|
android:gravity="center_vertical"
|
2019-03-20 22:52:14 +00:00
|
|
|
android:paddingStart="10dp"
|
|
|
|
android:paddingEnd="10dp">
|
2016-02-06 00:10:33 +00:00
|
|
|
|
2014-07-19 02:31:03 +00:00
|
|
|
<ImageView android:id="@+id/icon"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2015-07-01 00:45:39 +00:00
|
|
|
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" />
|
2016-02-06 00:10:33 +00:00
|
|
|
|
|
|
|
<LinearLayout android:orientation="vertical"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:gravity="center_vertical"
|
2019-03-20 22:52:14 +00:00
|
|
|
android:paddingStart="10dp">
|
2016-02-06 00:10:33 +00:00
|
|
|
|
|
|
|
<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>
|
2015-07-01 00:45:39 +00:00
|
|
|
</LinearLayout>
|