You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

activity_main.xml 1.2KB

1234567891011121314151617181920212223242526272829303132
  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. xmlns:mynamespace="http://schemas.android.com/apk/res-auto"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. tools:context=".MainActivity"
  8. android:orientation="vertical"
  9. tools:activity=".MainActivity">
  10. <TextView
  11. android:id="@+id/textView1"
  12. android:layout_width="fill_parent"
  13. android:layout_height="wrap_content"/>
  14. <com.feemers.android.fftdrawer.BarChartView
  15. android:id="@+id/graficView1"
  16. android:layout_width="match_parent"
  17. android:layout_height="wrap_content"
  18. android:layout_weight="2"
  19. mynamespace:backgroundColor="#4C614C"/>
  20. <TextView
  21. android:id="@+id/textView2"
  22. android:layout_width="fill_parent"
  23. android:layout_height="wrap_content"/>
  24. <com.feemers.android.fftdrawer.BarChartView
  25. android:id="@+id/graficView2"
  26. android:layout_width="match_parent"
  27. android:layout_height="wrap_content"
  28. android:layout_weight="2"
  29. mynamespace:backgroundColor="#75455E"/>
  30. </LinearLayout>