Subversion Repositories Code-Repo

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
90 Kevin 1
<?xml version="1.0" encoding="utf-8"?>
2
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3
    android:id="@+id/layout_graphText_root"
4
    android:layout_width="match_parent"
5
    android:layout_height="match_parent"
6
    android:orientation="vertical" >
7
 
8
    <TextView
9
        android:id="@+id/layout_graphText_status"
10
        android:layout_width="wrap_content"
11
        android:layout_height="wrap_content"
12
        android:text="Medium Text"
13
        android:textAppearance="?android:attr/textAppearanceMedium" />
14
 
15
    <TextView
16
        android:id="@+id/layout_graphText_text"
17
        android:layout_width="wrap_content"
18
        android:layout_height="wrap_content"
19
        android:text="Large Text"
20
        android:textAppearance="?android:attr/textAppearanceMedium" />
21
 
22
    <com.androidplot.xy.XYPlot
23
	    android:id="@+id/layout_graphText_graph"
24
	    android:layout_width="fill_parent"
25
	    android:layout_height="100px"
26
	    title="Test"/>
27
 
28
</LinearLayout>