You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<!-- Placeholder. Height gets set at runtime based on container size; the initial value is a hack to keep
44
+
the detail info offscreen until it's placed properly. May be a better way to do this. -->
45
+
<org.wikimedia.commons.media.MediaDetailSpacer
46
+
android:layout_width="fill_parent"
47
+
android:layout_height="16dp"
48
+
android:id="@+id/mediaDetailSpacer"/>
49
+
<LinearLayout
50
+
android:orientation="vertical"
51
+
android:layout_width="fill_parent"
52
+
android:layout_height="wrap_content"
53
+
android:background="#AA000000"
54
+
android:padding="16dp">
55
+
<LinearLayout
56
+
android:orientation="vertical"
57
+
android:layout_width="fill_parent"
58
+
android:layout_height="wrap_content"
59
+
android:background="#20ffffff"
60
+
android:padding="16dp">
61
+
<TextView
62
+
android:layout_width="match_parent"
63
+
android:layout_height="wrap_content"
64
+
android:textColor="@android:color/white"
65
+
android:text="Title"
66
+
android:textSize="16sp"
67
+
android:textStyle="bold"
68
+
android:paddingBottom="6dp"/>
69
+
<TextView
70
+
android:layout_width="match_parent"
71
+
android:layout_height="wrap_content"
72
+
android:text="Title of the media"
73
+
android:id="@+id/mediaDetailTitle"
74
+
android:layout_gravity="left|start"
75
+
android:textColor="@android:color/white"
76
+
android:background="#20ffffff"
77
+
android:textSize="14sp"
78
+
android:padding="12dp"/>
79
+
</LinearLayout>
80
+
<org.wikimedia.commons.media.MediaDetailSpacer
81
+
android:layout_width="fill_parent"
82
+
android:layout_height="8dp"/>
83
+
<LinearLayout
84
+
android:orientation="vertical"
85
+
android:layout_width="fill_parent"
86
+
android:layout_height="wrap_content"
87
+
android:background="#20ffffff"
88
+
android:padding="16dp">
89
+
<TextView
90
+
android:layout_width="match_parent"
91
+
android:layout_height="wrap_content"
92
+
android:text="Description"
93
+
android:textColor="@android:color/white"
94
+
android:textSize="16sp"
95
+
android:textStyle="bold"
96
+
android:paddingBottom="6dp"/>
97
+
<TextView
98
+
android:layout_width="match_parent"
99
+
android:layout_height="wrap_content"
100
+
android:text="Description of the media goes here. This can potentially be fairly long, and will need to wrap across multiple lines. We hope it looks nice though."
0 commit comments