将自定义视图添加到 XML...但具有 GENERIC 类型
我正在开发一个自定义视图,希望能够重用。它应该有一个通用类型,如下所示:
public class CustomViewFlipper<someType> extends ViewFlipper { }
我知道如何将普通的自定义视图绑定到 XML 文件。但我找不到这种情况的任何例子。有没有办法在 XML 中为类定义泛型类型?
I am working on a custom view with a hope of reusability. It should have a generic type, like this:
public class CustomViewFlipper<someType> extends ViewFlipper { }
I know how to bind a normal custom view to the XML file. But I couldn't find any example for this situation. Is there any way to define a generic type for a class in XML?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我不这么认为,但您可以创建自己的子类:
并在布局 XML 中使用该类。
I don't think so, but you can create your own subclass:
and use that class in your layout XML.
由于类型参数实际上在字节码中被清除,因此您可以在 XML 中使用类名,就好像它没有参数化一样,然后将其转换为 Java 代码中正确的参数化类型。
考虑使用 class:
并在您的活动布局 xml: 中,
然后在您的活动中:
As type parameters are actually cleared off in bytecode, you can use in XML the class name as if it was not parametrized and then cast it to proper parametrized type in java code.
consider having class:
and in your activities layout xml:
then in your activity:
我使用这种方法并且它对我有用。
然后在activity中实例化如下
I use this approach and it works for me.
And then in the activity, instantiate as below