Home | History | Annotate | Download | only in drawable
      1 <?xml version="1.0" encoding="utf-8"?>
      2 
      3 <shape xmlns:android="http://schemas.android.com/apk/res/android"
      4     android:shape="rectangle">
      5 
      6     <corners
      7         android:topLeftRadius="@dimen/setup_wizard_card_corner_radius"
      8         android:topRightRadius="@dimen/setup_wizard_card_corner_radius" />
      9 
     10     <solid android:color="?android:attr/colorBackground" />
     11 
     12 </shape>
     13 
     14