TextInputLayout + TextInputEditText

Simple example to use com.google.android.material.textfield.TextInputLayout and com.google.android.material.textfield.TextInputEditText in layout xml to make edit text better.


<?xml version="1.0" encoding="utf-8"?>
<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:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity">

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="android-er.blogspot.com"
android:gravity="center"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Normal TextView"/>
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="hint"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TextInputLayout + TextInputEditText"/>
<com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Hint">
<com.google.android.material.textfield.TextInputEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textStyle="bold"/>
</com.google.android.material.textfield.TextInputLayout>

</LinearLayout>


Post a Comment

Previous Post Next Post