Newer
Older
org.ntlab.acanthus_client / app / src / main / res / layout / animation_home.xml
parsecmonkey on 23 Oct 2021 2 KB homeの画像を変更
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <androidx.constraintlayout.widget.ConstraintLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. xmlns:app="http://schemas.android.com/apk/res-auto"
  5. xmlns:tools="http://schemas.android.com/tools"
  6. android:layout_width="match_parent"
  7. android:layout_height="match_parent">
  8.  
  9. <LinearLayout
  10. android:layout_width="match_parent"
  11. android:layout_height="198dp"
  12. android:background="@drawable/yellow_gabyou"
  13. android:orientation="vertical"
  14. app:layout_constraintTop_toTopOf="parent"
  15. tools:layout_editor_absoluteX="0dp">
  16.  
  17. <TextView
  18. android:id="@+id/animationName"
  19. android:layout_width="match_parent"
  20. android:layout_height="140dp"
  21. android:gravity="center|center_vertical"
  22. android:paddingTop="45dp"
  23. android:paddingLeft="25dp"
  24. android:paddingRight="25dp"
  25. android:text="Text"
  26. android:textColor="@color/black"
  27. android:textSize="24sp"
  28. android:textStyle="bold"
  29. android:typeface="monospace" />
  30.  
  31. <LinearLayout
  32. android:layout_width="match_parent"
  33. android:layout_height="match_parent"
  34. android:orientation="horizontal"
  35. tools:layout_editor_absoluteX="0dp"
  36. tools:layout_editor_absoluteY="0dp">
  37.  
  38. <TextView
  39. android:id="@+id/editorsName"
  40. android:layout_width="match_parent"
  41. android:layout_height="58dp"
  42. android:layout_weight="0.5"
  43. android:gravity="center|center_vertical"
  44. android:padding="8dp"
  45. android:text="Text"
  46. android:textColor="@color/black" />
  47.  
  48. <TextView
  49. android:id="@+id/createdDate"
  50. android:layout_width="match_parent"
  51. android:layout_height="58dp"
  52. android:layout_weight="0.5"
  53. android:gravity="center|center_vertical"
  54. android:padding="8dp"
  55. android:text="Text"
  56. android:textColor="@color/black"
  57. android:textSize="14sp" />
  58.  
  59. </LinearLayout>
  60. </LinearLayout>
  61.  
  62. </androidx.constraintlayout.widget.ConstraintLayout>