22 lines
774 B
XML
22 lines
774 B
XML
<?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">
|
|
|
|
<EditText
|
|
android:id="@+id/edit_text"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:hint="请输入内容"
|
|
android:background="@drawable/bg_r100_hui"/>
|
|
|
|
<TextView
|
|
android:id="@+id/length_text_view"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="0/100"
|
|
android:textColor="@color/color_FF999999"
|
|
android:textSize="14sp"
|
|
android:layout_gravity="end" />
|
|
</LinearLayout> |