Skip to content

Instantly share code, notes, and snippets.

@rygelouv
Created December 23, 2015 17:23
Show Gist options
  • Save rygelouv/0bcbb283af15c5ec456e to your computer and use it in GitHub Desktop.
Save rygelouv/0bcbb283af15c5ec456e to your computer and use it in GitHub Desktop.
Use this drawable as background to get an Android EditText with border.
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:thickness="0dp"
android:shape="rectangle">
<stroke android:width="1dp"
android:color="@color/divider"/>
<corners android:radius="0dp" />
</shape>
@kikitte
Copy link

kikitte commented Apr 24, 2024

Thankyou!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment