Newer
Older
org.ntlab.acanthus_client / app / src / main / res / layout / fragment_home.xml
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <androidx.constraintlayout.widget.ConstraintLayout 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. tools:context=".views.main_menu_ui.home.HomeFragment">
  8.  
  9. <TextView
  10. android:id="@+id/textHome"
  11. android:layout_width="wrap_content"
  12. android:layout_height="wrap_content"
  13. app:layout_constraintBottom_toBottomOf="@+id/tabHost"
  14. app:layout_constraintEnd_toEndOf="parent"
  15. app:layout_constraintStart_toStartOf="parent"
  16. app:layout_constraintTop_toTopOf="parent" />
  17.  
  18. <TabHost
  19. android:id="@+id/tabHost"
  20. android:layout_width="414dp"
  21. android:layout_height="701dp"
  22. app:layout_constraintEnd_toEndOf="parent"
  23. app:layout_constraintStart_toStartOf="parent"
  24. app:layout_constraintTop_toTopOf="parent">
  25.  
  26. <LinearLayout
  27. android:layout_width="match_parent"
  28. android:layout_height="match_parent"
  29. android:orientation="vertical">
  30.  
  31. <TabWidget
  32. android:id="@android:id/tabs"
  33. android:layout_width="match_parent"
  34. android:layout_height="wrap_content" />
  35.  
  36. <FrameLayout
  37. android:id="@android:id/tabcontent"
  38. android:layout_width="match_parent"
  39. android:layout_height="match_parent">
  40.  
  41. <ScrollView
  42. android:id="@+id/scrollView"
  43. android:layout_width="match_parent"
  44. android:layout_height="match_parent"
  45. android:isScrollContainer="false">
  46.  
  47. <LinearLayout
  48. android:id="@+id/tab1Layout"
  49. android:layout_width="match_parent"
  50. android:layout_height="wrap_content"
  51. android:orientation="vertical">
  52.  
  53. <Button
  54. android:id="@+id/aid1111"
  55. android:layout_width="match_parent"
  56. android:layout_height="wrap_content"
  57. android:text="dummyAnimation" />
  58.  
  59. <Button
  60. android:id="@+id/uid1"
  61. android:layout_width="match_parent"
  62. android:layout_height="wrap_content"
  63. android:text="owner: 1" />
  64.  
  65. <TextView
  66. android:id="@+id/textView"
  67. android:layout_width="match_parent"
  68. android:layout_height="wrap_content"
  69. android:text="LastUpDate: 00:00:00" />
  70.  
  71. <ListView
  72. android:id="@+id/animationList"
  73. android:layout_width="match_parent"
  74. android:layout_height="match_parent">
  75.  
  76. <ListView
  77. android:id="@+id/option"
  78. android:layout_width="match_parent"
  79. android:layout_height="match_parent" />
  80. </ListView>
  81.  
  82. </LinearLayout>
  83. </ScrollView>
  84.  
  85. <LinearLayout
  86. android:id="@+id/tab1"
  87. android:layout_width="match_parent"
  88. android:layout_height="match_parent"
  89. android:orientation="vertical">
  90.  
  91. </LinearLayout>
  92.  
  93. <LinearLayout
  94. android:id="@+id/tab2"
  95. android:layout_width="match_parent"
  96. android:layout_height="match_parent"
  97. android:orientation="vertical">
  98.  
  99. </LinearLayout>
  100.  
  101. <LinearLayout
  102. android:id="@+id/tab3"
  103. android:layout_width="match_parent"
  104. android:layout_height="match_parent"
  105. android:orientation="vertical">
  106.  
  107. </LinearLayout>
  108. </FrameLayout>
  109. </LinearLayout>
  110. </TabHost>
  111.  
  112. </androidx.constraintlayout.widget.ConstraintLayout>