2016-08-16 03:23:56 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-10-05 23:17:10 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:gravity="center">
|
2016-08-16 03:23:56 +00:00
|
|
|
|
|
|
|
<cn.carbswang.android.numberpickerview.library.NumberPickerView
|
|
|
|
android:id="@+id/expiration_number_picker"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
app:npv_WrapSelectorWheel="false"
|
|
|
|
app:npv_DividerColor="#cbc8ea"
|
2016-09-04 18:26:13 +00:00
|
|
|
app:npv_TextColorNormal="?conversation_number_picker_text_color_normal"
|
|
|
|
app:npv_TextColorSelected="?conversation_number_picker_text_color_selected"
|
2016-08-16 03:23:56 +00:00
|
|
|
app:npv_ItemPaddingVertical="20dp"
|
|
|
|
app:npv_TextColorHint="@color/grey_600"
|
|
|
|
app:npv_TextSizeNormal="16sp"
|
|
|
|
app:npv_TextSizeSelected="16sp"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
|
|
|
|
<TextView android:id="@+id/expiration_details"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@id/expiration_number_picker"
|
2016-10-05 23:17:10 +00:00
|
|
|
android:minLines="3"
|
|
|
|
android:padding="20dp"
|
|
|
|
tools:text="Your messages will not expire."/>
|
2016-08-16 03:23:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
</RelativeLayout>
|