123456789101112131415161718192021222324252627282930313233 |
- <?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: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"/>
- <TextView
- android:id="@+id/ej_share_content_tv"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="@dimen/dp_10"
- android:textColor="@color/ej_gray"
- android:textSize="@dimen/sp_14"
- android:maxLines="3"
- android:ellipsize="end"
- android:background="@color/ej_common_background"/>
- </LinearLayout>
|