Android:动态创建CheckedTextView
如何在 android 中动态创建 CheckedTextView [无需创建新的实现]?
看来 CheckedTextView 是抽象 ...(根本没有任何意义),因为我不断收到编译时错误:“无法实例化类型 CheckedTextView”
使用 Android 1.5
How can you dynamically create a CheckedTextView in android [without creating a new implementation]?
It seems CheckedTextView is abstract ... (which does not make any sense at all) because I keep getting the compile time error: "Cannot instantiate the type CheckedTextView"
Using Android 1.5
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看文档,该类不是抽象的并且具有构造函数。因此,您大概可以调用:
其中
this
是您的Activity
,并获取CheckedTextView
。您在使用这个时遇到过问题吗?
Looking at the docs, the class is not abstract and has constructors. Presumably, therefore, you can call:
where
this
is yourActivity
, and get aCheckedTextView
.Have you run into problems using this?