ej_view_share_image.xml 1.1 KB

1234567891011121314151617181920212223242526272829
  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="wrap_content"
  5. android:orientation="vertical"
  6. android:paddingLeft="@dimen/dp_10"
  7. android:paddingRight="@dimen/dp_10"
  8. android:layout_marginBottom="@dimen/dp_30">
  9. <EditText
  10. android:id="@+id/ej_share_speak_et"
  11. android:layout_width="match_parent"
  12. android:layout_height="wrap_content"
  13. android:hint="@string/ej_share_speak_hint"
  14. android:textColorHint="@color/ej_gray"
  15. android:textColor="@color/ej_black"
  16. android:textSize="@dimen/sp_16"
  17. android:layout_marginTop="@dimen/dp_20"
  18. android:layout_marginBottom="@dimen/dp_10"
  19. android:inputType="text"/>
  20. <ImageView
  21. android:id="@+id/ej_share_content_iv"
  22. android:layout_width="match_parent"
  23. android:layout_height="@dimen/dp_180"
  24. android:scaleType="centerCrop"
  25. android:background="@color/ej_red"/>
  26. </LinearLayout>