Vector Drawables – part 3
Tuesday, March 29th, 2011In part 2 we got our basic dialog box look and feel working, but still had some tidying up to do.
The first things that we need to do it to make the dialog box title look a bit more like a dialog box title. We need to define a new drawable for the background of the title in res/drawable/dialog_title.xml:
1 2 3 4 5 6 7 | < ?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle"> <solid android:color="#000000"></solid> <corners android:topLeftRadius="5dp" android:topRightRadius="5dp"></corners> <stroke android:color="#000000" android:width="1dp"></stroke> </shape> |


