33 lines
1.3 KiB
XML
33 lines
1.3 KiB
XML
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
android:paddingBottom="@dimen/activity_vertical_margin"
|
|
android:paddingLeft="@dimen/activity_horizontal_margin"
|
|
android:paddingRight="@dimen/activity_horizontal_margin"
|
|
android:paddingTop="@dimen/activity_vertical_margin"
|
|
tools:context="lecho.lib.hellocharts.samples.PreviewLineChartActivity$PlaceholderFragment" >
|
|
|
|
<lecho.lib.hellocharts.view.LineChartView
|
|
android:id="@+id/chart_top"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1" >
|
|
</lecho.lib.hellocharts.view.LineChartView>
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="2dp"
|
|
android:layout_marginBottom="8dp"
|
|
android:layout_marginTop="8dp"
|
|
android:background="@android:color/darker_gray" />
|
|
|
|
<lecho.lib.hellocharts.view.ColumnChartView
|
|
android:id="@+id/chart_bottom"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1" >
|
|
</lecho.lib.hellocharts.view.ColumnChartView>
|
|
|
|
</LinearLayout> |