activity_main.xml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. tools:context="${relativePackage}.${activityClass}" >
  6. <TextView
  7. android:id="@+id/xvalue"
  8. android:layout_width="wrap_content"
  9. android:layout_height="wrap_content"
  10. android:layout_alignParentLeft="true"
  11. android:layout_alignParentTop="true"
  12. android:layout_marginLeft="20dp"
  13. android:layout_marginTop="54dp"
  14. android:textSize="24sp" />
  15. <TextView
  16. android:id="@+id/yvalue"
  17. android:layout_width="wrap_content"
  18. android:layout_height="wrap_content"
  19. android:layout_alignLeft="@+id/xvalue"
  20. android:layout_below="@+id/xvalue"
  21. android:layout_marginTop="18dp"
  22. android:textSize="24sp" />
  23. <TextView
  24. android:id="@+id/zvalue"
  25. android:layout_width="wrap_content"
  26. android:layout_height="wrap_content"
  27. android:layout_alignLeft="@+id/yvalue"
  28. android:layout_below="@+id/yvalue"
  29. android:layout_marginTop="18dp"
  30. android:textSize="24sp" />
  31. </RelativeLayout>