diff options
author | Renard | 2016-04-05 01:52:13 -0300 |
---|---|---|
committer | Renard | 2016-04-05 01:52:13 -0300 |
commit | 90ca8b34d823eed19d26f6611716ca231d60424c (patch) | |
tree | 65d389b05acb542f14a8faba8abeaa7b36ae227e /app/src/main/res/layout/recentpost_item.xml | |
download | BaiApp-90ca8b34d823eed19d26f6611716ca231d60424c.tar.gz BaiApp-90ca8b34d823eed19d26f6611716ca231d60424c.tar.xz BaiApp-90ca8b34d823eed19d26f6611716ca231d60424c.zip |
Initial commit
Diffstat (limited to 'app/src/main/res/layout/recentpost_item.xml')
-rw-r--r-- | app/src/main/res/layout/recentpost_item.xml | 39 |
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 |