ej_activity_share.xml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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:background="@color/ej_white">
  7. <FrameLayout
  8. android:layout_width="match_parent"
  9. android:layout_height="@dimen/dp_30"
  10. android:layout_marginTop="@dimen/dp_10"
  11. android:orientation="horizontal"
  12. android:paddingRight="@dimen/dp_15">
  13. <ImageView
  14. android:id="@+id/ej_share_back_iv"
  15. android:layout_width="@dimen/dp_60"
  16. android:layout_height="@dimen/dp_30"
  17. android:paddingLeft="@dimen/dp_15"
  18. android:paddingRight="@dimen/dp_15"
  19. android:src="@drawable/ej_ic_icon_back" />
  20. <TextView
  21. android:id="@+id/ej_share_push_tv"
  22. android:layout_width="wrap_content"
  23. android:layout_height="match_parent"
  24. android:layout_gravity="right"
  25. android:background="@drawable/ej_selector_push_background"
  26. android:gravity="center"
  27. android:paddingLeft="@dimen/dp_10"
  28. android:paddingRight="@dimen/dp_10"
  29. android:text="@string/ej_share_push"
  30. android:textColor="@color/ej_white" />
  31. </FrameLayout>
  32. <FrameLayout
  33. android:id="@+id/ej_container"
  34. android:layout_width="match_parent"
  35. android:layout_height="match_parent" />
  36. </LinearLayout>