
Apparently: 1. Some OEMs don't actually autocrop to rounded corners 2. I was not correctly using the right corner radius attributes in the first place, making it inconsistent. Let's fix that. Closes #730
6 lines
280 B
XML
6 lines
280 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:shape="rectangle">
|
|
<solid android:color="@android:color/white" />
|
|
<corners android:radius="@android:dimen/system_app_widget_background_radius" />
|
|
</shape>
|