How can we specify a TextView’s shadowDx/Dy/Radius values in dip? Right now I have:
<style name="foo">
<item name="android:shadowDx">-1</item>
<item name="android:shadowDy">-1</item>
<item name="android:shadowRadius">1</item>
</style>
I can’t seem to specify “1dip” in these places. Is there a way to do it other than setting them in code and doing the device density multiplication ourselves?
Thanks
Unfortunately that’s the only way, sorry 🙁