Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save FrancescoBonizzi/184cd64f99fe1fd636f3d645aa15fbba to your computer and use it in GitHub Desktop.
Save FrancescoBonizzi/184cd64f99fe1fd636f3d645aa15fbba to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<stroke
android:width="1dp"
android:color="@color/colorDefaultBottomDialogBackground" />
<solid android:color="@color/colorDefaultBottomDialogBackground" />
<padding
android:bottom="1dp"
android:left="1dp"
android:right="1dp"
android:top="1dp" />
<corners
android:topLeftRadius="@dimen/BottomDialogCornerRadius"
android:topRightRadius="@dimen/BottomDialogCornerRadius" />
</shape>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment