1234567891011121314151617181920212223242526272829 |
- <?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="wrap_content"
- android:orientation="vertical"
- android:paddingLeft="@dimen/dp_10"
- android:paddingRight="@dimen/dp_10"
- android:layout_marginBottom="@dimen/dp_30">
- <EditText
- android:id="@+id/ej_share_speak_et"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:hint="@string/ej_share_speak_hint"
- android:textColorHint="@color/ej_gray"
- android:textColor="@color/ej_black"
- android:textSize="@dimen/sp_16"
- android:layout_marginTop="@dimen/dp_20"
- android:layout_marginBottom="@dimen/dp_10"
- android:inputType="text"/>
- <ImageView
- android:id="@+id/ej_share_content_iv"
- android:layout_width="match_parent"
- android:layout_height="@dimen/dp_180"
- android:scaleType="centerCrop"
- android:background="@color/ej_red"/>
- </LinearLayout>
|