如何对自定义 XML 视图的属性进行操作
我创建了一个名为 RoundedImageView 的视图,其角是圆角的。我想要一个名为cornerRadius 的属性,它可以让我(从XML)指定半径。如何在我拥有的 Java 代码中
public class RoundedImageView extends ImageView
实际查找 XML 中指定的属性“cornerRadius”?
I have created a view called RoundedImageView, the corners are rounded. I want an attribute called cornerRadius that lets me (from the XML) specify the radius. How in the Java code where I have
public class RoundedImageView extends ImageView
can I actually look for the attribute "cornerRadius" that was specified in the XML?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是示例的链接。 链接
搜索“自定义属性 android”以获取更多示例。
另请关注此主题如何检索自定义控件的 XML 属性
Here's a link to an example. link
Search for "custom attributes android" for more examples.
Also follow this thread How to retrieve XML attribute for custom control