我可以在 Android 中缩放视图吗?

发布于 2024-12-07 16:33:32 字数 42 浏览 0 评论 0原文

我可以获取 Android 框架渲染的视图并将其重新调整为其他尺寸吗?

Can I take a view that has been rendered by the Android framework and rescale it to some other size?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

风吹短裙飘 2024-12-14 16:33:32

您需要 API 11 或更高版本才能缩放视图。具体方法如下:

float scalingFactor = 0.5f; // scale down to half the size
view.setScaleX(scalingFactor);
view.setScaleY(scalingFactor);

You need API 11 or above to scale a view. Here is how:

float scalingFactor = 0.5f; // scale down to half the size
view.setScaleX(scalingFactor);
view.setScaleY(scalingFactor);
婴鹅 2024-12-14 16:33:32

在您的 XML 中

android:scaleX="0.5"
android:scaleY="0.5"

In your XML

android:scaleX="0.5"
android:scaleY="0.5"
放肆 2024-12-14 16:33:32

对于缩放,我调整视图的宽度高度,使其影响区域位置 另一个视图
如果您希望它影响区域和位置,请使用 @Gadzair@Taiti 的答案

private void resize(View view, float scaleX, float scaleY) {
    ViewGroup.LayoutParams layoutParams = view.getLayoutParams();
    layoutParams.width = (int) (view.getWidth() * scaleX);
    layoutParams.height = (int) (view.getHeight() * scaleY);
    view.setLayoutParams(layoutParams);
}

的示例

resize(view, 0.5f, 0.8f);

使用结果
示例

演示

For scale, I resize the width and height of the view to make it affect the area and position another view.
If you don't want it affect the area and position, use answer of @Gadzair and @Taiti

private void resize(View view, float scaleX, float scaleY) {
    ViewGroup.LayoutParams layoutParams = view.getLayoutParams();
    layoutParams.width = (int) (view.getWidth() * scaleX);
    layoutParams.height = (int) (view.getHeight() * scaleY);
    view.setLayoutParams(layoutParams);
}

Example using

resize(view, 0.5f, 0.8f);

Result
Example

Demo

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文