fork download
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <android.support.constraint.ConstraintLayout xmlns:android="http://s...content-available-to-author-only...d.com/apk/res/android"
  3. xmlns:app="http://s...content-available-to-author-only...d.com/apk/res-auto"
  4. xmlns:tools="http://s...content-available-to-author-only...d.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. tools:context="com.example.chengforapp.myapplication.MainActivity">
  8.  
  9. <TextView
  10. android:id="@+id/txtShow"
  11. android:layout_width="wrap_content"
  12. android:layout_height="wrap_content"
  13. app:layout_constraintBottom_toBottomOf="parent"
  14. app:layout_constraintLeft_toLeftOf="parent"
  15. app:layout_constraintRight_toRightOf="parent"
  16. app:layout_constraintTop_toTopOf="parent" />
  17.  
  18. <Button
  19. android:id="@+id/btn_paired"
  20. android:layout_width="101dp"
  21. android:layout_height="69dp"
  22. android:layout_marginBottom="8dp"
  23. android:layout_marginStart="8dp"
  24. android:text="paired"
  25. app:layout_constraintBottom_toBottomOf="parent"
  26. app:layout_constraintStart_toStartOf="parent" />
  27.  
  28. <Button
  29. android:id="@+id/btn_conn"
  30. android:layout_width="110dp"
  31. android:layout_height="67dp"
  32. android:layout_marginBottom="8dp"
  33. android:layout_marginEnd="8dp"
  34. android:text="find "
  35. app:layout_constraintBottom_toBottomOf="parent"
  36. app:layout_constraintEnd_toEndOf="parent" />
  37.  
  38. <ListView
  39. android:id="@+id/Show_B_List"
  40. android:layout_width="368dp"
  41. android:layout_height="122dp"
  42. android:layout_marginBottom="8dp"
  43. android:layout_marginTop="8dp"
  44. app:layout_constraintBottom_toTopOf="@+id/DangerText"
  45. app:layout_constraintTop_toBottomOf="@+id/txtShow"
  46. tools:layout_editor_absoluteX="8dp" />
  47.  
  48. <TextView
  49. android:id="@+id/DangerText"
  50. android:layout_width="wrap_content"
  51. android:layout_height="wrap_content"
  52. android:layout_marginBottom="8dp"
  53. android:text="TextView"
  54. app:layout_constraintBottom_toBottomOf="parent"
  55. tools:layout_editor_absoluteX="154dp" />
  56.  
  57. <ImageView
  58. android:id="@+id/pmimage"
  59. android:layout_width="wrap_content"
  60. android:layout_height="245dp"
  61. app:srcCompat="@drawable/a000"
  62. tools:layout_editor_absoluteX="0dp"
  63. tools:layout_editor_absoluteY="0dp" />
  64.  
  65. <TextView
  66. android:id="@+id/DATE"
  67. android:layout_width="wrap_content"
  68. android:layout_height="wrap_content"
  69. android:text="TextView"
  70. tools:layout_editor_absoluteX="26dp"
  71. tools:layout_editor_absoluteY="25dp" />
  72.  
  73. </android.support.constraint.ConstraintLayout>
  74.  
Success #stdin #stdout 0s 4392KB
stdin
Standard input is empty
stdout
Standard output is empty