Posts

Showing posts from October, 2021

Edittext in android with demo|android developement course for biggnears

 Today we will learn about edittext so,lets start! write it in your xml file: <? 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 = "match_parent" android:orientation = "vertical" android:padding = "15dp" android:gravity = "center" > **************** INPUT TYPE EDITTEXT **************** < EditText android:layout_width = "match_parent" android:layout_height = "wrap_content" android:inputType = "text" android:hint = "Enter the name" android:textSize = "14sp" /> **************** PASSWORD EDITTEXT **************** < EditText android:layout_width = "match_parent" android:layout_height = ...