aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/thread_item.xml
diff options
context:
space:
mode:
authorLibravatar Renard 2016-04-05 01:52:13 -0300
committerLibravatar Renard 2016-04-05 01:52:13 -0300
commit90ca8b34d823eed19d26f6611716ca231d60424c (patch)
tree65d389b05acb542f14a8faba8abeaa7b36ae227e /app/src/main/res/layout/thread_item.xml
downloadBaiApp-90ca8b34d823eed19d26f6611716ca231d60424c.tar.gz
BaiApp-90ca8b34d823eed19d26f6611716ca231d60424c.tar.xz
BaiApp-90ca8b34d823eed19d26f6611716ca231d60424c.zip
Initial commit
Diffstat (limited to 'app/src/main/res/layout/thread_item.xml')
-rw-r--r--app/src/main/res/layout/thread_item.xml95
1 files changed, 95 insertions, 0 deletions
diff --git a/app/src/main/res/layout/thread_item.xml b/app/src/main/res/layout/thread_item.xml
new file mode 100644
index 0000000..a4396b4
--- /dev/null
+++ b/app/src/main/res/layout/thread_item.xml
@@ -0,0 +1,95 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:orientation="horizontal" android:layout_width="match_parent"
+ android:layout_height="match_parent">
+
+ <ImageView
+ android:layout_width="5dp"
+ android:layout_height="match_parent"
+ android:id="@+id/ivMargin"
+ android:scaleType="fitXY"
+ android:src="@color/defaultMarginColor"
+ android:layout_alignParentLeft="true"
+ android:layout_alignParentStart="true"
+ android:layout_alignParentTop="true"
+ android:layout_alignParentBottom="true" />
+
+ <RelativeLayout
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:layout_alignParentTop="true"
+ android:layout_toRightOf="@+id/ivMargin"
+ android:layout_toEndOf="@+id/ivMargin">
+ <TextView
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:text="397 Nombre: VIPPEADOR : 11/03/16(vie)20:18:31"
+ android:id="@+id/lv_txtPoster"
+ android:textSize="10sp"
+ android:layout_below="@+id/lv_txtTitle"
+ android:layout_toRightOf="@+id/ivThumb"
+ android:layout_toEndOf="@+id/ivThumb"
+ android:layout_marginLeft="3dp"
+ android:layout_marginTop="3dp"
+ android:layout_marginRight="3dp" />
+ <TextView
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:textAppearance="?android:attr/textAppearanceSmall"
+ android:text="Cuerpo del post"
+ android:id="@+id/lv_txtBody"
+ android:layout_below="@+id/lv_txtFileInfo"
+ android:layout_toRightOf="@+id/ivThumb"
+ android:layout_toEndOf="@+id/ivThumb"
+ android:layout_marginLeft="3dp"
+ android:layout_marginTop="3dp"
+ android:layout_marginRight="3dp" />
+ <TextView
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:textAppearance="?android:attr/textAppearanceSmall"
+ android:text="Titulo"
+ android:id="@+id/lv_txtTitle"
+ android:textStyle="bold"
+ android:textSize="14sp"
+ android:layout_alignParentTop="true"
+ android:layout_toRightOf="@+id/ivThumb"
+ android:layout_toEndOf="@+id/ivThumb"
+ android:layout_marginLeft="3dp"
+ android:layout_marginTop="3dp"
+ android:layout_marginRight="3dp" />/>
+ <ImageView
+ android:layout_width="70dp"
+ android:layout_height="70dp"
+ android:id="@+id/ivThumb"
+ android:src="@drawable/blank"
+ android:layout_alignParentTop="true"
+ android:scaleType="centerCrop" />
+
+ <TextView
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:text="123 Respuestas, 123 Imágenes"
+ android:id="@+id/lv_txtReplyCounter"
+ android:layout_below="@+id/lv_txtBody"
+ android:layout_toRightOf="@+id/ivThumb"
+ android:layout_toEndOf="@+id/ivThumb"
+ android:layout_marginLeft="3dp"
+ android:layout_marginTop="3dp"
+ android:layout_marginBottom="3dp"
+ android:layout_marginRight="3dp" />
+
+ <TextView
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:text="New Text"
+ android:id="@+id/lv_txtFileInfo"
+ android:textSize="10sp"
+ android:layout_below="@+id/lv_txtPoster"
+ android:layout_toRightOf="@+id/ivThumb"
+ android:layout_toEndOf="@+id/ivThumb"
+ android:layout_marginLeft="3dp"
+ android:layout_marginRight="3dp" />
+ </RelativeLayout>
+
+</LinearLayout> \ No newline at end of file