Android - ImageView 上的 TextView,边界大小等于 Imageview 大小
这让我有点困惑......希望有一个简单的解决方案。
我想创建一个带有背景的textView(在某种形式的上下文中思考)。问题是,我希望将文本视图的最大尺寸绑定到背景图像的尺寸。我尝试了几种方法:
- 直接使用TextView的background属性,但这会在文本变大时缩放图像
- 使用 ImageView 和 TextView 重叠,但我无法弄清楚如何将 textView 宽度绑定到 ImageView 的宽度
- 将 textView 的 maxWidth 属性硬编码为某个 dp 值。这是可行的 - 不过,我似乎一直遇到这个问题的变体,并且还没有找到一种动态地做到这一点的方法。
有什么想法吗?
干杯!
this one's be puzzling me for a bit... hopefully there's an easy solution.
I want to create a textView with a background (think in the context of a form of some sort). The problem is, I want the maximum size of the textview to be bound to the size of the background image. I've tried a couple of ways:
- Using the background property of TextView directly, but this scales the image when the text gets big
- Using an ImageView and TextView overlayed, but I couldnt work out how to get the textView width to bind to the width of the ImageView
- Hardcoding the maxWidth property of the textView to some dp value. This works - although, I seem to come across variants of this problem all the time and haven't figured a way to do it dynamically.
Any ideas??
Cheers!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能想要创建一个派生自 TextView 的自定义视图,然后重写 setBackground 方法,并且您可以在其中强制将文本视图的大小设置为背景大小。
多说一句,您还可以使用
android:ellipsize
来marquee
以避免文本溢出,这是 API 中常用的技术。You might want to create a custom view that derives from TextView, and then override the setBackground method and where you can force the size of your text view to the size of background.
One more word, you might also use
android:ellipsize
tomarquee
to avoid overflowing of text, this is a common technique used in the API.