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_videodetection_and_accelerometer.xml 2.9KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:orientation="vertical"
  8. android:padding="10dp"
  9. tools:context=".VideodetectionAndAccelerometerActivity">
  10. <SurfaceView
  11. android:id="@+id/surfaceViewVideodetectionAndAccelerometer"
  12. android:layout_width="1dp"
  13. android:layout_height="1dp"
  14. android:visibility="visible">
  15. </SurfaceView>
  16. <TextView
  17. android:id="@+id/tvvideodetectionAndAccelerometerStatusmessage"
  18. android:layout_width="match_parent"
  19. android:layout_height="wrap_content"
  20. android:textAppearance="@style/TextAppearance.AppCompat.Large"
  21. android:text="Videodetection+Accelerometer Activity">
  22. </TextView>
  23. <TextView
  24. android:id="@+id/tvvideodetectionAndAccelerometerData"
  25. android:layout_width="match_parent"
  26. android:layout_height="wrap_content"
  27. android:text="">
  28. </TextView>
  29. <Button
  30. android:id="@+id/videodetectionAndAccelerometerBackToMainActivity"
  31. android:layout_width="match_parent"
  32. android:layout_height="wrap_content"
  33. android:text="Back to MainActivity">
  34. </Button>
  35. <LinearLayout
  36. android:layout_width="match_parent"
  37. android:layout_height="match_parent"
  38. android:orientation="vertical">
  39. <TextView
  40. android:id="@+id/tvVideodetectionAndAccelerometerDeviceListRecyclerView"
  41. android:layout_width="match_parent"
  42. android:layout_height="wrap_content"
  43. android:textAppearance="@style/TextAppearance.AppCompat.Large"
  44. android:text="Registered Devices">
  45. </TextView>
  46. <androidx.recyclerview.widget.RecyclerView
  47. android:id="@+id/deviceListRecyclerView"
  48. android:layout_width="match_parent"
  49. android:layout_height="match_parent"
  50. tools:listitem="@layout/device_item"
  51. android:layout_weight="1">
  52. </androidx.recyclerview.widget.RecyclerView>
  53. <TextView
  54. android:id="@+id/tvVideodetectionAndAccelerometerAlarmHistoryListRecyclerView"
  55. android:layout_width="match_parent"
  56. android:layout_height="wrap_content"
  57. android:textAppearance="@style/TextAppearance.AppCompat.Large"
  58. android:text="Alarm History List">
  59. </TextView>
  60. <androidx.recyclerview.widget.RecyclerView
  61. android:id="@+id/alarmHistoryListRecyclerView"
  62. android:layout_width="match_parent"
  63. android:layout_height="match_parent"
  64. tools:listitem="@layout/alarm_history_item"
  65. android:layout_weight="1">
  66. </androidx.recyclerview.widget.RecyclerView>
  67. </LinearLayout>
  68. </LinearLayout>