qs_core_event_edit_text.xml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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="match_parent"
  5. android:background="@drawable/qs_core_et_frame_selector_bg"
  6. android:gravity="center"
  7. android:orientation="horizontal">
  8. <ImageView
  9. android:id="@+id/qs_core_eet_iv_left"
  10. android:layout_width="18dp"
  11. android:layout_height="18dp"
  12. android:layout_marginStart="10dp"
  13. android:layout_marginLeft="10dp"
  14. android:padding="7dp" />
  15. <EditText
  16. android:id="@+id/qs_core_eet_input"
  17. android:layout_width="0dp"
  18. android:layout_height="match_parent"
  19. android:layout_marginStart="10dp"
  20. android:layout_marginLeft="10dp"
  21. android:layout_weight="1"
  22. android:background="@android:color/transparent"
  23. android:singleLine="true"
  24. android:textColor="@color/qs_core_gray"
  25. android:textColorHint="@color/qs_core_gray_30"
  26. android:textSize="16sp" />
  27. <ImageView
  28. android:id="@+id/qs_core_eet_iv_right"
  29. android:layout_width="18dp"
  30. android:layout_height="18dp"
  31. android:layout_marginEnd="10dp"
  32. android:layout_marginRight="10dp"
  33. android:padding="7dp" />
  34. </LinearLayout>