Baru_Berbagi

activity_main.xml

Oct 26th, 2020 (edited)
1,584
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.93 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.    xmlns:tools="http://schemas.android.com/tools"
  4.    android:layout_width="match_parent"
  5.    android:layout_height="match_parent"
  6.    android:orientation="vertical"
  7.    android:gravity="center"
  8.    android:padding="10dp"
  9.    tools:context=".MainActivity">
  10.  
  11.     <Button
  12.        android:id="@+id/buttonBarChart"
  13.        android:layout_width="match_parent"
  14.        android:layout_height="wrap_content"
  15.        android:text="Bar Chart"/>
  16.  
  17.     <Button
  18.        android:id="@+id/buttonPieChart"
  19.        android:layout_width="match_parent"
  20.        android:layout_height="wrap_content"
  21.        android:text="Pie Chart"/>
  22.  
  23.     <Button
  24.        android:id="@+id/buttonRadarChart"
  25.        android:layout_width="match_parent"
  26.        android:layout_height="wrap_content"
  27.        android:text="Radar Chart"/>
  28.  
  29. </LinearLayout>
Add Comment
Please, Sign In to add comment