This should work (did not test):
attrs.xml
xml
<resources>
<attr name="customViewBackground" format="reference" />
</resources>
styles.xml
xml
<style name="MyCustomViewBackground">
...
<item name="android:background">?attr/customViewBackground</item>
...
</style>
themes.xml
xml
<style name="AppTheme.Light" parent="@android:style/Theme.Holo.Light">
...
<item name="customViewBackground">@drawable/half_alpha_white_rounded_background</item>
...
</style>
<style name="AppTheme.Dark" parent="@android:style/Theme.Holo.Dark">
...
<item name="customViewBackground">@drawable/half_alpha_dark_rounded_background</item>
...
</style>