Context-detection API for Android developed as a university project
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.

recording.xml 1.1KB

1234567891011121314151617181920212223242526272829
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:orientation="vertical"
  4. android:layout_width="fill_parent"
  5. android:layout_height="fill_parent"
  6. android:padding="5px">
  7. <TextView
  8. android:id="@+id/recordingheader"
  9. android:layout_width="fill_parent"
  10. android:layout_height="wrap_content"
  11. android:text="@string/recordingheader"
  12. android:textSize="25sp"
  13. android:textStyle="bold"/>
  14. <TextView
  15. android:id="@+id/recordingcount"
  16. android:layout_width="fill_parent"
  17. android:layout_height="fill_parent"
  18. android:layout_weight="1"
  19. android:layout_gravity="fill"
  20. android:gravity="center"
  21. android:text="@string/recordinginitial"
  22. android:textSize="100sp"
  23. android:textStyle="bold"/>
  24. <TextView
  25. android:id="@+id/recordingblurb"
  26. android:layout_width="fill_parent"
  27. android:layout_height="wrap_content"
  28. android:text="@string/recordingwait"/>
  29. </LinearLayout>