Subversion Repositories Code-Repo

Compare Revisions

Ignore whitespace Rev 89 → Rev 90

/Android Development/IOIODebugger/res/layout/view_graph_text_widget.xml
0,0 → 1,28
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/layout_graphText_root"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
 
<TextView
android:id="@+id/layout_graphText_status"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Medium Text"
android:textAppearance="?android:attr/textAppearanceMedium" />
 
<TextView
android:id="@+id/layout_graphText_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Large Text"
android:textAppearance="?android:attr/textAppearanceMedium" />
 
<com.androidplot.xy.XYPlot
android:id="@+id/layout_graphText_graph"
android:layout_width="fill_parent"
android:layout_height="100px"
title="Test"/>
 
</LinearLayout>