Posts

Showing posts with the label Open text file in EditText

Code of a simple android app which can browse and open a text file

Image
Here I provide the codes of a simple android app which can be used to browse and open a text file from device. Codes in main.xml <?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:gravity="center" android:orientation="vertical"> <Button android:layout_height="wrap_content" android:layout_width="wrap_content" android:text="Button" android:id="@+id/select"/> <EditText android:layout_height="wrap_content" android:layout_width="match_parent" android:ems="10" android:id="@+id/edittext1"/> <EditText android:layout_height="match_parent" android:layout_width="match_parent" android:ems="10" android:id="@+i...