• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3              android:orientation="vertical"
4              android:layout_width="fill_parent"
5              android:layout_height="fill_parent">
6
7    <ScrollView android:layout_width="fill_parent"
8                android:layout_height="wrap_content"
9                android:layout_weight="1">
10        <LinearLayout
11                      android:orientation="vertical"
12                      android:layout_width="fill_parent"
13                      android:layout_height="wrap_content">
14            <Button android:id="@+id/startSimplePieExButton"
15                    style="@style/toc_button"
16                    android:text="A Pie Chart"/>
17            <Button android:id="@+id/startSimpleXYExButton"
18                    style="@style/toc_button"
19                    android:text="A Simple XY Plot"/>
20            <Button android:id="@+id/startDynamicXYExButton"
21                    style="@style/toc_button"
22                    android:text="A Dynamic XY Plot"/>
23            <Button android:id="@+id/startOrSensorExButton"
24                    style="@style/toc_button"
25                    android:text="Realtime Orientation Sensor Plot"/>
26            <Button android:id="@+id/startTimeSeriesExButton"
27                    style="@style/toc_button"
28                    android:text="@string/ts_title"/>
29            <Button android:id="@+id/startStepChartExButton"
30                    style="@style/toc_button"
31                    android:text="Step Chart"
32                    />
33            <Button android:id="@+id/startScrollZoomButton"
34                    style="@style/toc_button"
35                    android:text="Scroll and Zoom"
36                    />
37            <Button android:id="@+id/startBarPlotExButton"
38                    style="@style/toc_button"
39                    android:text="Bar Plot"/>
40            <Button android:id="@+id/startXyScatterExButton"
41                    style="@style/toc_button"
42                    android:text="XY Scatter"
43                    android:enabled="false"/>
44            <Button android:id="@+id/startXyScatterLineExButton"
45                    style="@style/toc_button"
46                    android:text="XY Scatter With Lines"
47                    android:enabled="false"/>
48            <Button android:id="@+id/startXyRegionExampleButton"
49                    style="@style/toc_button"
50                    android:text="XYRegion Example"
51                    android:enabled="true"/>
52            <Button android:id="@+id/startXyListViewExButton"
53                    style="@style/toc_button"
54                    android:text="ListView of XYPlots"
55                    android:enabled="true"/>
56            <Button android:id="@+id/startDualScaleExampleButton"
57                    style="@style/toc_button"
58                    android:text="Dual Scale Example"
59                    android:enabled="true"/>
60            <Button android:id="@+id/startXYPlotWithBgImgExample"
61                    style="@style/toc_button"
62                    android:text="XY Background Example"
63                    android:enabled="true"/>
64            </LinearLayout>
65    </ScrollView>
66    <TextView android:id="@+id/text"
67              android:layout_width="fill_parent"
68              android:layout_height="wrap_content"
69              android:autoLink="web"
70              android:gravity="center"
71              android:text="http://androidplot.com"/>
72</LinearLayout>
73
74