Skip to content

Instantly share code, notes, and snippets.

@yunusemredilber
Created May 12, 2020 12:53
Show Gist options
  • Save yunusemredilber/46c44ce51d01263d92bee6e6be9c6596 to your computer and use it in GitHub Desktop.
Save yunusemredilber/46c44ce51d01263d92bee6e6be9c6596 to your computer and use it in GitHub Desktop.
Android horizontal scrollable text
<androidx.appcompat.widget.AppCompatEditText
android:background="@null"
android:inputType="none"
android:textIsSelectable="false"
android:cursorVisible="false"
android:focusable="false"
android:layout_width="200dp"
app:layout_constrainedWidth="true"
android:scrollHorizontally="true"
android:singleLine="true"
android:layout_height="30dp"
android:textSize="16sp" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment