| <?xml version="1.0" encoding="utf-8"?> |
| <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| android:layout_width="match_parent" |
| android:layout_height="match_parent" > |
| |
| <com.github.mikephil.charting.charts.BubbleChart |
| android:id="@+id/chart1" |
| android:layout_width="match_parent" |
| android:layout_height="match_parent" |
| android:background="@android:color/white" |
| android:layout_above="@+id/seekBar1" /> |
| |
| <SeekBar |
| android:id="@+id/seekBar2" |
| android:layout_width="match_parent" |
| android:layout_height="wrap_content" |
| android:layout_alignParentBottom="true" |
| android:layout_alignParentLeft="true" |
| android:layout_margin="8dp" |
| android:layout_toLeftOf="@+id/tvYMax" |
| android:layout_marginRight="5dp" |
| android:max="200" |
| android:paddingBottom="12dp" /> |
| |
| <SeekBar |
| android:id="@+id/seekBar1" |
| android:layout_width="match_parent" |
| android:layout_height="wrap_content" |
| android:layout_above="@+id/seekBar2" |
| android:layout_margin="8dp" |
| android:layout_marginBottom="35dp" |
| android:layout_toLeftOf="@+id/tvXMax" |
| android:layout_marginRight="5dp" |
| android:max="100" |
| android:paddingBottom="12dp" /> |
| |
| <TextView |
| android:id="@+id/tvXMax" |
| android:layout_width="50dp" |
| android:layout_height="wrap_content" |
| android:layout_alignBottom="@+id/seekBar1" |
| android:layout_alignParentRight="true" |
| android:text="500" |
| android:layout_marginBottom="15dp" |
| android:layout_marginRight="10dp" |
| android:gravity="right" |
| android:textAppearance="?android:attr/textAppearanceMedium" /> |
| |
| <TextView |
| android:id="@+id/tvYMax" |
| android:layout_width="50dp" |
| android:layout_height="wrap_content" |
| android:layout_alignBottom="@+id/seekBar2" |
| android:layout_alignParentRight="true" |
| android:text="500" |
| android:layout_marginBottom="15dp" |
| android:layout_marginRight="10dp" |
| android:gravity="right" |
| android:textAppearance="?android:attr/textAppearanceMedium" /> |
| |
| </RelativeLayout> |