如何使用 FrameLayout 将 Imageview 置于屏幕中央? (带有java代码)

发布于 2024-12-08 19:29:09 字数 506 浏览 0 评论 0原文

我需要将图像视图置于屏幕中央,但以编程方式进行,而不使用 XML 布局。

我实际上正在使用 FrameLayout,但我不知道如何将其置于 FrameLayout 中心。

这是我到目前为止的代码:

        FrameLayout fl = new FrameLayout(this.getApplicationContext());
    splash = new ImageView(getApplicationContext());
    splash.setImageResource(R.drawable.logo);
    splash.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));
    fl.addView(splash);
    fl.setBackgroundColor(Color.BLACK);
    setContentView(fl);

I need to center a imageview on the screen, but programatically, without using XML layouts.

I am actually using a FrameLayout, but i dont know how to center it on the FrameLayout.

This is the code i have until now:

        FrameLayout fl = new FrameLayout(this.getApplicationContext());
    splash = new ImageView(getApplicationContext());
    splash.setImageResource(R.drawable.logo);
    splash.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));
    fl.addView(splash);
    fl.setBackgroundColor(Color.BLACK);
    setContentView(fl);

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

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

发布评论

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

评论(3

入画浅相思 2024-12-15 19:29:10

我认为这样的事情可以为您完成:

    LayoutParams centerParams = new LayoutParams(LayoutParams.FILL_PARENT,LayoutParams.FILL_PARENT);

    centerParams.gravity =  Gravity.CENTER;
    fl.setLayoutParams(centerParams);

查看此页面 了解更多信息

I would think something like this would get it done for you:

    LayoutParams centerParams = new LayoutParams(LayoutParams.FILL_PARENT,LayoutParams.FILL_PARENT);

    centerParams.gravity =  Gravity.CENTER;
    fl.setLayoutParams(centerParams);

check out this page for more info

戏舞 2024-12-15 19:29:10

我认为应该这样做:

fl.setForegroundGravity(Gravity.CENTER);

I think this should do it:

fl.setForegroundGravity(Gravity.CENTER);
锦欢 2024-12-15 19:29:10

Imageview 没有重力。它有layout_gravity。

Imageview has no gravity. It has layout_gravity.

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