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_audiodetection_and_accelerometer.xml 1.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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=".AudiodetectionAndAccelerometerActivity">
  10. <TextView
  11. android:id="@+id/tvAudiodetectionAndAccelerometerStatusmessage"
  12. android:layout_width="match_parent"
  13. android:layout_height="wrap_content"
  14. android:text="Audiodetection + Accelerometer Activity">
  15. </TextView>
  16. <Button
  17. android:id="@+id/audiodetectionAndAccelerometerBackToMainActivity"
  18. android:layout_width="match_parent"
  19. android:layout_height="wrap_content"
  20. android:text="Back to MainActivity">
  21. </Button>
  22. <LinearLayout
  23. android:layout_width="match_parent"
  24. android:layout_height="match_parent"
  25. android:orientation="vertical">
  26. <androidx.recyclerview.widget.RecyclerView
  27. android:id="@+id/deviceListRecyclerView"
  28. android:layout_width="match_parent"
  29. android:layout_height="match_parent"
  30. tools:listitem="@layout/device_item"
  31. android:layout_weight="1">
  32. </androidx.recyclerview.widget.RecyclerView>
  33. <androidx.recyclerview.widget.RecyclerView
  34. android:id="@+id/alarmHistoryListRecyclerView"
  35. android:layout_width="match_parent"
  36. android:layout_height="match_parent"
  37. tools:listitem="@layout/alarm_history_item"
  38. android:layout_weight="1">
  39. </androidx.recyclerview.widget.RecyclerView>
  40. </LinearLayout>
  41. </LinearLayout>