-
Notifications
You must be signed in to change notification settings - Fork 137
/
Copy pathdemo_changelogrowheader_layout.xml
51 lines (45 loc) · 2.14 KB
/
demo_changelogrowheader_layout.xml
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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<FrameLayout
android:id="@+id/box_inner"
style="@style/Box_inner"
android:layout_width="fill_parent"
android:layout_height="48dp"
android:background="@drawable/shadow_changelogdemo_customlayout">
<LinearLayout
android:id="@+id/chg_rowheader"
android:layout_width="match_parent"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:padding="10dp"
android:layout_height="match_parent"
android:gravity="center_vertical"
android:orientation="horizontal">
<!-- ChangeLog Header [Version] You have to use the id="chg_headerVersion" -->
<TextView
android:id="@+id/chg_headerVersion"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="match_parent"
android:gravity="center_vertical"
android:text=""
android:textAllCaps="true"
android:textAppearance="@android:style/TextAppearance.Medium"
android:textStyle="bold"/>
<!-- ChangeLog Header [Date] You have to use the id="chg_headerDate" -->
<TextView
android:id="@+id/chg_headerDate"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:gravity="center_vertical"
android:text=""
android:textAllCaps="true"
android:textAppearance="@android:style/TextAppearance.Medium"
android:textStyle="bold"/>
</LinearLayout>
</FrameLayout>
</RelativeLayout>