aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/recentpost_item.xml
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/res/layout/recentpost_item.xml')
-rw-r--r--app/src/main/res/layout/recentpost_item.xml39
1 files changed, 39 insertions, 0 deletions
diff --git a/app/src/main/res/layout/recentpost_item.xml b/app/src/main/res/layout/recentpost_item.xml
new file mode 100644
index 0000000..852b317
--- /dev/null
+++ b/app/src/main/res/layout/recentpost_item.xml
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="utf-8"?>
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:orientation="vertical" android:layout_width="match_parent"
+ android:layout_height="match_parent">
+
+ <TextView
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="rp_message"
+ android:id="@+id/rp_message"
+ android:layout_below="@+id/rp_title"
+ android:layout_alignParentLeft="true"
+ android:layout_alignParentStart="true"
+ android:layout_marginLeft="5dp" />
+
+ <TextView
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="rp_title"
+ android:id="@+id/rp_title"
+ android:layout_alignParentTop="true"
+ android:layout_alignParentLeft="true"
+ android:layout_alignParentStart="true"
+ android:layout_marginLeft="5dp"
+ android:layout_marginTop="5dp"
+ android:textSize="12sp" />
+
+ <TextView
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="rp_timediff"
+ android:id="@+id/rp_timediff"
+ android:textSize="12sp"
+ android:layout_below="@+id/rp_message"
+ android:layout_alignParentRight="true"
+ android:layout_alignParentEnd="true"
+ android:layout_marginRight="5dp"
+ android:layout_marginBottom="3dp" />
+</RelativeLayout> \ No newline at end of file