Newer
Older
NemophilaClient / app / src / main / res / layout / layout_requested_activity.xml
  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="45dp"
  13. android:layout_height="45dp"
  14. android:layout_weight="1"
  15. tools:srcCompat="@tools:sample/avatars" />
  16.  
  17. <TextView
  18. android:id="@+id/textView3"
  19. android:layout_width="150dp"
  20. android:layout_height="wrap_content"
  21. android:layout_weight="1"
  22. android:text="彌永 慎之介"
  23. android:textSize="20sp" />
  24.  
  25. <Button
  26. android:id="@+id/okButton"
  27. android:layout_width="25dp"
  28. android:layout_height="45dp"
  29. android:layout_weight="1"
  30. android:backgroundTint="#FFFFFF"
  31. android:text="承認"
  32. android:textColor="#4CAF50" />
  33.  
  34. <Button
  35. android:id="@+id/noButton"
  36. android:layout_width="25dp"
  37. android:layout_height="45dp"
  38. android:layout_weight="1"
  39. android:backgroundTint="#FFFFFF"
  40. android:text="拒否"
  41. android:textColor="#F44336" />
  42. </LinearLayout>