Newer
Older
NemophilaClient / app / src / main / res / layout / layout_requested_activity.xml
m-mifune on 12 Oct 2023 1 KB layoutの変更
  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="wrap_content"
  7. android:orientation="horizontal"
  8. >
  9.  
  10. <ImageView
  11. android:id="@+id/imageView"
  12. android:layout_width="30dp"
  13. android:layout_height="40dp"
  14. android:layout_weight="1"
  15. android:layout_marginLeft="30px"
  16. tools:srcCompat="@tools:sample/avatars" />
  17.  
  18. <TextView
  19. android:id="@+id/textView3"
  20. android:layout_width="130dp"
  21. android:layout_height="wrap_content"
  22. android:layout_weight="1"
  23. android:text="彌永 慎之介"
  24. android:textSize="20sp" />
  25.  
  26. <Button
  27. android:id="@+id/okButton"
  28. android:layout_width="20dp"
  29. android:layout_height="45dp"
  30. android:layout_marginRight="15px"
  31. android:layout_weight="1"
  32. android:backgroundTint="#FFFFFF"
  33. android:text="承認"
  34. android:textColor="#4CAF50" />
  35.  
  36. <Button
  37. android:id="@+id/noButton"
  38. android:layout_width="20dp"
  39. android:layout_height="45dp"
  40. android:layout_marginRight="50px"
  41. android:layout_weight="1"
  42. android:backgroundTint="#FFFFFF"
  43. android:text="拒否"
  44. android:textColor="#F44336" />
  45. </LinearLayout>