Thursday, December 9, 2021

Read only

1. Read only or not editable

 android:editable="false"

<EditText
android:id="@+id/et_test_id"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:layout_marginTop="40dp"
android:hint="ID"
android:textSize="20sp"
android:editable="false"
/>

No comments:

Post a Comment

Date format in android

public String f_dateFormat (String cdate , String dateToFormat) { // String cdate = "2013-05-15T10:00:00-0700"; ...