我可以在 Android 中缩放视图吗?
我可以获取 Android 框架渲染的视图并将其重新调整为其他尺寸吗?
Can I take a view that has been rendered by the Android framework and rescale it to some other size?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您需要 API 11 或更高版本才能缩放视图。具体方法如下:
You need API 11 or above to scale a view. Here is how:
在您的 XML 中
In your XML
对于缩放,我调整视图的
宽度
和高度
,使其影响区域和位置另一个视图
。如果您不希望它影响区域和位置,请使用
@Gadzair
和@Taiti
的答案的示例
使用结果
演示
For scale, I resize the
width
andheight
of the view to make it affect the area and positionanother view
.If you don't want it affect the area and position, use answer of
@Gadzair
and@Taiti
Example using
Result
Demo