activity_main.xml 702 B

123456789101112131415161718
  1. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:id="@+id/relativeLayout"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. tools:context="${relativePackage}.${activityClass}" >
  7. <ToggleButton
  8. android:id="@+id/toggleButton1"
  9. android:layout_width="wrap_content"
  10. android:layout_height="wrap_content"
  11. android:layout_alignParentBottom="true"
  12. android:layout_alignParentLeft="true"
  13. android:layout_alignParentRight="true"
  14. android:textOff="@string/pressme"
  15. android:textOn="@string/pressme_again" />
  16. </RelativeLayout>