关于扩展 LinearLayout
我需要创建一个 View 来扩展 LinearLayout 以包含一些标准的 android 小部件。 我创建了一个 MyLinearLayout 类,它扩展了 LinearLayout 类;但现在,我如何将它用作 xml 布局文件中的元素?我无法让它工作,我也无法找到有关它的信息,所以我有点困惑...... OO
I need to create a View which extends a LinearLayout to contain some standard android widget.
I've created a class MyLinearLayout which extends the LinearLayout class; but now, how can I use it as an element in the xml layout file? I can't get it working and I haven't been able to find info about it and so I'm a bit confused... O.O
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
假设
在你的xml中你可以使用
Assuming
in your xml you can use
您必须在其前面加上您正在使用的包名称。因此,您可以声明“[PackageName].MyLinearLayout”,而不是声明“MyLinearLayout”。
You have to preface it with the package name that you are using. So, instead of declaring "MyLinearLayout" you would declare "[PackageName].MyLinearLayout".