fragment_slot_mapping_item.xml 846 B

12345678910111213141516171819202122232425
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="48sp"
  5. android:gravity="center">
  6. <LinearLayout
  7. android:layout_width="wrap_content"
  8. android:layout_height="wrap_content"
  9. android:layout_gravity="center"
  10. android:orientation="horizontal">
  11. <TextView
  12. android:id="@+id/slot_mapping_logical_slot"
  13. android:textSize="14sp"
  14. android:layout_width="wrap_content"
  15. android:layout_height="32sp"
  16. android:layout_marginEnd="10sp" />
  17. <Spinner
  18. android:id="@+id/slot_mapping_ports"
  19. android:layout_width="wrap_content"
  20. android:layout_height="32sp" />
  21. </LinearLayout>
  22. </LinearLayout>