在android中将TextView设置为垂直LinearLayout的右侧

发布于 2024-12-12 09:20:36 字数 1273 浏览 0 评论 0原文

我尝试将 TextView 添加到垂直 LinearLayout 并将文本视图与布局右侧对齐:

LinearLayout temprLayout=new LinearLayout(this);
            temprLayout.setOrientation(LinearLayout.VERTICAL);

            theTemprature = new TextView(this);
            theTemprature.setVisibility(View.VISIBLE);
            theTemprature.setTextSize(21);
            theTemprature.setTextColor(0xffffCC33);

            theUVText = new TextView(this);
            theUVText.setVisibility(View.VISIBLE);
            theUVText.setTextSize(21);
            theUVText.setTextColor(0xfff5b800);
            theUVText.setBackgroundColor(0xff423234);
            theUVText.setGravity(Gravity.RIGHT | Gravity.TOP);

            theUVText.setLayoutParams(new FrameLayout.LayoutParams(
                    LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT,
                    Gravity.RIGHT));

            temprLayout.addView(theTemprature, new FrameLayout.LayoutParams(
                    LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT,
                    Gravity.RIGHT));
            temprLayout.addView(theUVText, new FrameLayout.LayoutParams(
                    LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT,
                    Gravity.RIGHT));

但 textview 保持与布局左侧对齐

I tried to add a TextView to a vertical LinearLayout and align the text view to right of layout:

LinearLayout temprLayout=new LinearLayout(this);
            temprLayout.setOrientation(LinearLayout.VERTICAL);

            theTemprature = new TextView(this);
            theTemprature.setVisibility(View.VISIBLE);
            theTemprature.setTextSize(21);
            theTemprature.setTextColor(0xffffCC33);

            theUVText = new TextView(this);
            theUVText.setVisibility(View.VISIBLE);
            theUVText.setTextSize(21);
            theUVText.setTextColor(0xfff5b800);
            theUVText.setBackgroundColor(0xff423234);
            theUVText.setGravity(Gravity.RIGHT | Gravity.TOP);

            theUVText.setLayoutParams(new FrameLayout.LayoutParams(
                    LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT,
                    Gravity.RIGHT));

            temprLayout.addView(theTemprature, new FrameLayout.LayoutParams(
                    LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT,
                    Gravity.RIGHT));
            temprLayout.addView(theUVText, new FrameLayout.LayoutParams(
                    LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT,
                    Gravity.RIGHT));

But the textview remains aligned to the left of layout

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

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

发布评论

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

评论(1

甜尕妞 2024-12-19 09:20:36

尝试将 LinearLayout 设置为 MATCH_PARENT 宽度。

Try setting up your LinearLayout to MATCH_PARENT width.

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