blob: ba2a39730a1fbc59e5ffb571172f8c3cd9150f75 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
<?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: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>
|