Last active
October 18, 2022 04:53
-
-
Save whalemare/dc348ca89d318d0fef052cf7b089bc6b to your computer and use it in GitHub Desktop.
EditText like TextView
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<EditText | |
android:id="@+id/text_view" | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:background="@null" | |
android:cursorVisible="false" | |
android:longClickable="false" | |
android:clickable="false" | |
android:focusable="false" | |
android:focusableInTouchMode="false"/> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment