今日学edittext的用法

练习使用

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/main"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".EditSimpleActivity"
android:orientation="vertical">

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="下面是登录讯息"/>

<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="请输入帐号"
android:inputType="text"/>

<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="请输入密码"
android:inputType="textPassword"/>

</LinearLayout>

自定义边框形状

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/main"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".EditSimpleActivity"
android:orientation="vertical">

<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="预设形式"
android:inputType="text"
android:layout_marginTop="5dp"/>

<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="边框消失"
android:background="@null"
android:inputType="text"
android:layout_marginTop="5dp"/>

<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="圆角边框"
android:inputType="text"
android:background="@drawable/edittext_selector"
android:layout_marginTop="5dp"/>

</LinearLayout>