<?xml version="1.0" encoding="UTF-8"?>
<!-- Shape Drawables are XML files which allow to define a geometric object with colors, borders and gradients which can get assigned to Views.
 The advantage of using XML Shape Drawables is that they automatically adjust to the correct size.
 The following shows an example of a Shape Drawable. This drawable is used for the background of the UI interface. -->

<shape
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <stroke
        android:width="2dp"
        android:color="#FFFFFFFF" />
    <gradient
        android:endColor="#DDBBBBBB"
        android:startColor="#DD777777"
        android:angle="90" />
    <corners
        android:bottomRightRadius="7dp"
        android:bottomLeftRadius="7dp"
        android:topLeftRadius="7dp"
        android:topRightRadius="7dp" />
</shape>