feat:add prompt for android and iOS

This commit is contained in:
pengfei.zhou
2019-11-20 21:04:27 +08:00
parent 2290c8cd48
commit ec854ebe71
5 changed files with 172 additions and 3 deletions

View File

@@ -0,0 +1,21 @@
<?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="15dp"
android:paddingRight="15dp">
<TextView
android:id="@+id/tv_msg"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
android:layout_marginBottom="15dp" />
<EditText
android:id="@+id/edit_input"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/Theme.Doric.Modal.Prompt.EditText" />
</LinearLayout>