Fix crash
parent
d38b81f222
commit
1133cf45c3
@ -1,34 +1,35 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
<RelativeLayout
|
||||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
xmlns:tools="http://schemas.android.com/tools"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
android:orientation="vertical"
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
android:layout_width="match_parent"
|
android:orientation="vertical"
|
||||||
android:layout_height="wrap_content"
|
android:layout_width="match_parent"
|
||||||
android:layout_gravity="center"
|
android:layout_height="wrap_content"
|
||||||
android:gravity="center">
|
android:layout_gravity="center"
|
||||||
|
android:gravity="center">
|
||||||
|
|
||||||
<cn.carbswang.android.numberpickerview.library.NumberPickerView
|
<cn.carbswang.android.numberpickerview.library.NumberPickerView
|
||||||
android:id="@+id/expiration_number_picker"
|
android:id="@+id/expiration_number_picker"
|
||||||
android:layout_alignParentTop="true"
|
android:layout_alignParentTop="true"
|
||||||
app:npv_WrapSelectorWheel="false"
|
app:npv_WrapSelectorWheel="false"
|
||||||
app:npv_DividerColor="#cbc8ea"
|
app:npv_DividerColor="#cbc8ea"
|
||||||
app:npv_TextColorNormal="?conversation_number_picker_text_color_normal"
|
app:npv_TextColorNormal="@color/text"
|
||||||
app:npv_TextColorSelected="?conversation_number_picker_text_color_selected"
|
app:npv_TextColorSelected="@color/text"
|
||||||
app:npv_ItemPaddingVertical="20dp"
|
app:npv_ItemPaddingVertical="20dp"
|
||||||
app:npv_TextColorHint="@color/grey_600"
|
app:npv_TextColorHint="@color/grey_600"
|
||||||
app:npv_TextSizeNormal="16sp"
|
app:npv_TextSizeNormal="16sp"
|
||||||
app:npv_TextSizeSelected="16sp"
|
app:npv_TextSizeSelected="16sp"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"/>
|
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"
|
|
||||||
android:minLines="3"
|
|
||||||
android:padding="20dp"
|
|
||||||
tools:text="Your messages will not expire."/>
|
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/expiration_details"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_below="@id/expiration_number_picker"
|
||||||
|
android:minLines="3"
|
||||||
|
android:padding="20dp"
|
||||||
|
tools:text="Your messages will not expire."/>
|
||||||
|
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
||||||
Loading…
Reference in New Issue