为 Android 创建自定义小部件
我正在尝试创建一个旋转的 imageView。看看这个(http://stackoverflow.com/questions/1930963/rotating-a-view-in-android)我知道我必须重写onDraw。
但是当我创建自己的派生 TextView 类时,如何在我的 xml 布局中使用它?
I'm trying to create a rotating imageView. Looking at this (http://stackoverflow.com/questions/1930963/rotating-a-view-in-android) I know I'll have to override onDraw.
But when I create my own derrived TextView class, how do I use it in my xml layouts?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要在 xml 布局中使用它,请添加以下内容:
记下小写“视图”或直接指定其名称
To use it in your xml layout add the following:
note the lowercase "view" or by directly specifying its name
这里讨论如何创建和访问自定义组件
http://developer.android .com/guide/topics/ui/custom-components.html
How to create and access custom components is discussed here
http://developer.android.com/guide/topics/ui/custom-components.html