ej_view_share_msg.xml 1.2 KB

123456789101112131415161718192021222324252627282930313233
  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: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. <TextView
  21. android:id="@+id/ej_share_content_tv"
  22. android:layout_width="match_parent"
  23. android:layout_height="wrap_content"
  24. android:layout_marginLeft="@dimen/dp_10"
  25. android:textColor="@color/ej_gray"
  26. android:textSize="@dimen/sp_14"
  27. android:maxLines="3"
  28. android:ellipsize="end"
  29. android:background="@color/ej_common_background"/>
  30. </LinearLayout>