Judul : How to remove auto focus from EditText in Android
link : How to remove auto focus from EditText in Android
How to remove auto focus from EditText in Android
Tags: How to remove auto focus from EditText in Android,to remove auto focus from EditText in Android, EditText Android Example,Code Android Example, EditText Android code.
activity_main.xml
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/rl"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="10dp"
tools:context=".MainActivity"
android:background="#d4c5b8"
android:focusable="true"
android:focusableInTouchMode="true"
>
<EditText
android:id="@+id/et"
android:layout_width="250dp"
android:layout_height="wrap_content"
android:hint="Input your country"
android:padding="10dp"
/>
<EditText
android:id="@+id/et_city"
android:layout_width="250dp"
android:layout_height="wrap_content"
android:hint="Input your City"
android:padding="10dp"
android:layout_below="@+id/et"
/>
</RelativeLayout>
That's the articleHow to remove auto focus from EditText in Android
You are now reading the articleHow to remove auto focus from EditText in Android with link addresshttps://inabnonapudyawanabing.blogspot.com/2020/11/how-to-remove-auto-focus-from-edittext.html
0 Response to "How to remove auto focus from EditText in Android"
Post a Comment