2017-04-20 13:33:33 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2017-05-15 09:54:39 +00:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:background="@color/white">
|
2017-04-20 13:33:33 +00:00
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="match_parent"
|
2017-05-15 09:54:39 +00:00
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
<RelativeLayout
|
2017-04-20 13:33:33 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent">
|
2017-05-15 09:54:39 +00:00
|
|
|
<LinearLayout
|
2017-04-20 13:33:33 +00:00
|
|
|
android:layout_width="match_parent"
|
2017-05-15 09:54:39 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
|
android:paddingLeft="16dp"
|
|
|
|
|
android:paddingRight="16dp"
|
|
|
|
|
android:paddingEnd="16dp"
|
|
|
|
|
android:paddingBottom="20dp"
|
|
|
|
|
android:paddingTop="20dp">
|
2018-08-22 20:01:05 +00:00
|
|
|
<net.pherth.android.emoji_library.EmojiTextView
|
2017-05-15 09:54:39 +00:00
|
|
|
android:id="@+id/titleTextView"
|
|
|
|
|
style="@style/CardTitle"
|
2017-04-20 13:33:33 +00:00
|
|
|
android:layout_width="match_parent"
|
2017-05-15 09:54:39 +00:00
|
|
|
android:layout_height="wrap_content" />
|
2017-04-20 13:33:33 +00:00
|
|
|
|
2018-08-22 20:01:05 +00:00
|
|
|
<net.pherth.android.emoji_library.EmojiTextView
|
2017-05-15 09:54:39 +00:00
|
|
|
android:id="@+id/notesTextView"
|
|
|
|
|
style="@style/CardText"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
<View
|
|
|
|
|
android:id="@+id/rightBorderView"
|
|
|
|
|
android:layout_width="5dp"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
|
android:layout_alignParentEnd="true" />
|
|
|
|
|
</RelativeLayout>
|
2017-04-20 13:33:33 +00:00
|
|
|
</LinearLayout>
|
2017-05-15 09:54:39 +00:00
|
|
|
<View
|
|
|
|
|
android:id="@+id/bottomBorderView"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="0.5dp"
|
|
|
|
|
android:background="@color/cell_separator"/>
|
|
|
|
|
</LinearLayout>
|