blob: bb14ca9a2709c9e70f699343dcc5b10022ef368b (
plain)
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
|
<?xml version="1.0" encoding="UTF-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="?background_color"
android:orientation="vertical" >
<LinearLayout style="@style/action_bar" >
<ImageView
style="@style/action_bar_action"
android:onClick="goHome" />
<View style="@style/action_bar_separator" />
<TextView style="@style/action_bar_title" />
<View style="@style/action_bar_separator" />
<ImageView
style="@style/action_bar_action"
android:onClick="goManual"
android:src="@drawable/actionbar_manual" />
</LinearLayout>
<ListView
android:id="@+id/historyList"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:footerDividersEnabled="false"
android:headerDividersEnabled="false" >
</ListView>
</LinearLayout>
|