How to avoid duplicate value for resource 'attr/*' in CustomView
如果我导入:
CustomViewA(从 Maven 导入)
1 2 3 4 | <declare-styleable name="CustomViewA"> </declare-styleable> |
CustomViewB(从 Maven 导入)
1 2 3 4 | <declare-styleable name="CustomViewB"> </declare-styleable> |
如果 min 和 max 重复,这将失败。我以为 Android 会通过
目前我得到的唯一解决方案是:
1 |
这太糟糕了。
你可以这样做
1 2 3 4 5 6 7 8 9 | <declare-styleable name="CustomViewA"> </declare-styleable> <declare-styleable name="CustomViewB"> </declare-styleable> |
让它独一无二是最终的答案。
我准备使用
1 |