我正在研究形状,发现了一些很难找到答案的问题。希望你能帮我:
1 - shape="0" 的含义是什么?
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="0"
>
2 - 为什么要设置如此精确的角点值?是否有一些工具可以将形状转换为 XML,这就是如此精确的原因?
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="0"
>
<gradient
...
>
<corners
android:topLeftRadius="0.100000024dip"
android:topRightRadius="0.100000024dip"
android:bottomLeftRadius="10.0dip"
android:bottomRightRadius="10.0dip"
>
</corners>
</shape>
3 - 背景渐变的最佳半径是多少?我看到有些人使用 300 左右的值。
谢谢