123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical"
- android:background="@color/ej_white">
- <FrameLayout
- android:layout_width="match_parent"
- android:layout_height="@dimen/dp_30"
- android:layout_marginTop="@dimen/dp_10"
- android:orientation="horizontal"
- android:paddingRight="@dimen/dp_15">
- <ImageView
- android:id="@+id/ej_share_back_iv"
- android:layout_width="@dimen/dp_60"
- android:layout_height="@dimen/dp_30"
- android:paddingLeft="@dimen/dp_15"
- android:paddingRight="@dimen/dp_15"
- android:src="@drawable/ej_ic_icon_back" />
- <TextView
- android:id="@+id/ej_share_push_tv"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:layout_gravity="right"
- android:background="@drawable/ej_selector_push_background"
- android:gravity="center"
- android:paddingLeft="@dimen/dp_10"
- android:paddingRight="@dimen/dp_10"
- android:text="@string/ej_share_push"
- android:textColor="@color/ej_white" />
- </FrameLayout>
- <FrameLayout
- android:id="@+id/ej_container"
- android:layout_width="match_parent"
- android:layout_height="match_parent" />
- </LinearLayout>
|