|
@@ -0,0 +1,63 @@
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="@dimen/list_item_height"
|
|
|
+ android:layout_marginLeft="@dimen/margin_medium"
|
|
|
+ android:layout_marginRight="@dimen/margin_medium"
|
|
|
+ android:gravity="center_vertical">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/textView"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="@string/Sender"/>
|
|
|
+ <!--android:text="@string/element_text"-->
|
|
|
+</FrameLayout>
|
|
|
+<!--GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+android:layout_width="match_parent"
|
|
|
+android:layout_height="wrap_content"
|
|
|
+android:paddingLeft="16dp"
|
|
|
+android:paddingTop="16dp"
|
|
|
+android:paddingRight="16dp"
|
|
|
+android:layout_gravity="top"-->
|
|
|
+
|
|
|
+<!-- Add in TextView to display flower name -->
|
|
|
+<!--TextView
|
|
|
+ android:id="@+id/flower_text"
|
|
|
+ android:layout_column="0"
|
|
|
+ android:layout_row="0"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:textSize="25dp"
|
|
|
+ android:text="@string/Sender"/>
|
|
|
+
|
|
|
+<TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_row="1"
|
|
|
+ android:layout_column="0"
|
|
|
+ android:text="@string/Betreff"
|
|
|
+ android:textSize="20sp"
|
|
|
+ android:textAppearance="@style/TextAppearance.AppCompat.Body1"
|
|
|
+ android:textColor="@color/colorBetreff" />
|
|
|
+
|
|
|
+<TextView
|
|
|
+ android:text="@string/Beginn"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_row="2"
|
|
|
+ android:layout_column="0"
|
|
|
+ android:gravity="left"
|
|
|
+ android:textSize="20sp" />
|
|
|
+
|
|
|
+<TextView
|
|
|
+ android:text="@string/date"
|
|
|
+ android:textSize="20dp"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_row="0"
|
|
|
+ android:layout_column="3"
|
|
|
+ android:gravity="left" />
|
|
|
+
|
|
|
+
|
|
|
+</GridLayout-->
|