2014-07-23 03:27:05 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
2015-10-23 19:47:21 +00:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2015-10-26 19:13:12 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2015-10-23 19:47:21 +00:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
<LinearLayout android:id="@+id/container"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_width="match_parent"
|
2014-07-23 03:27:05 +00:00
|
|
|
android:layout_height="wrap_content"
|
2015-10-26 17:59:39 +00:00
|
|
|
android:visibility="gone"
|
2015-10-26 19:13:12 +00:00
|
|
|
tools:visibility="visible"
|
|
|
|
android:padding="2dp"
|
2015-10-23 19:47:21 +00:00
|
|
|
android:gravity="center_vertical"
|
2015-07-09 15:03:45 +00:00
|
|
|
android:focusable="true"
|
|
|
|
android:nextFocusRight="@+id/cancel"
|
|
|
|
android:background="@drawable/reminder_background">
|
2015-10-14 04:44:01 +00:00
|
|
|
|
2015-10-23 19:47:21 +00:00
|
|
|
<LinearLayout android:id="@+id/reminder"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:layout_margin="10dp"
|
|
|
|
android:orientation="vertical">
|
2015-10-14 04:44:01 +00:00
|
|
|
|
2015-10-23 19:47:21 +00:00
|
|
|
<TextView android:id="@+id/reminder_title"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginBottom="5dp"
|
2015-10-26 19:13:12 +00:00
|
|
|
tools:text="Invite to Signal"
|
2015-10-23 19:47:21 +00:00
|
|
|
android:textColor="@color/white"
|
|
|
|
android:textSize="18sp"/>
|
2014-07-23 03:27:05 +00:00
|
|
|
|
2015-10-23 19:47:21 +00:00
|
|
|
<TextView android:id="@+id/reminder_text"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2015-10-26 19:13:12 +00:00
|
|
|
tools:text="Take your conversation with Jules Bonnot to the next level."
|
2015-10-23 19:47:21 +00:00
|
|
|
android:fontFamily="sans-serif-light"
|
|
|
|
android:textColor="@color/white"
|
|
|
|
android:textSize="16sp"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:gravity="right"
|
|
|
|
android:layout_marginLeft="15dp"
|
|
|
|
android:orientation="vertical">
|
2015-10-14 04:44:01 +00:00
|
|
|
|
2015-10-23 19:47:21 +00:00
|
|
|
<LinearLayout android:layout_width="wrap_content"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:gravity="top">
|
2015-10-14 04:44:01 +00:00
|
|
|
|
2015-10-23 19:47:21 +00:00
|
|
|
<ImageButton android:id="@+id/cancel"
|
|
|
|
android:layout_width="40dp"
|
|
|
|
android:layout_height="40dp"
|
|
|
|
android:padding="10dp"
|
2015-07-09 15:03:45 +00:00
|
|
|
android:focusable="true"
|
|
|
|
android:nextFocusRight="@+id/container"
|
|
|
|
android:nextFocusLeft="@+id/container"
|
2015-10-23 19:47:21 +00:00
|
|
|
android:background="@drawable/touch_highlight_background"
|
2015-10-26 19:13:12 +00:00
|
|
|
android:src="@drawable/ic_close_white_24dp"/>
|
2015-10-23 19:47:21 +00:00
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|
2014-07-23 03:27:05 +00:00
|
|
|
</LinearLayout>
|