xref: /aosp_15_r20/external/MPAndroidChart/MPChartExample/src/main/res/layout/activity_scrollview.xml (revision f99be7d8b6514e88ac10f2e78d89d406712b34e9)
1<?xml version="1.0" encoding="utf-8"?>
2<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
3    android:layout_width="match_parent"
4    android:layout_height="wrap_content">
5
6    <LinearLayout
7        android:layout_width="match_parent"
8        android:layout_height="wrap_content"
9        android:orientation="vertical" >
10
11        <TextView
12            android:layout_width="match_parent"
13            android:layout_height="30dp"
14            android:gravity="center"
15            android:text="@string/scrollViewStart" />
16
17        <!-- THIS IS JUST A PLACEHOLDER -->
18
19        <View
20            android:layout_width="match_parent"
21            android:layout_height="350dp" />
22
23        <com.github.mikephil.charting.charts.BarChart
24            android:id="@+id/chart1"
25            android:layout_width="match_parent"
26            android:layout_height="450dp" />
27
28        <!-- THIS IS JUST A PLACEHOLDER -->
29
30        <View
31            android:layout_width="match_parent"
32            android:layout_height="700dp" />
33
34        <TextView
35            android:layout_width="match_parent"
36            android:layout_height="30dp"
37            android:gravity="center"
38            android:text="@string/scrollViewEnd" />
39
40    </LinearLayout>
41
42</ScrollView>
43