Spinner Android 中的半切文本

发布于 2024-12-27 12:35:49 字数 1330 浏览 1 评论 0原文

我在 Android 上有一种布局,但如果我更改微调器的大小,我的文本会被剪切,我尝试自定义微调器背景并尝试默认布局,但无法解析。

我的 XML:

            <Spinner
                android:id="@+id/spinner2"
                android:layout_width="wrap_content"
                android:layout_height="40px"
                android:layout_marginRight="2dip"
                android:layout_weight="1"
                android:background="@drawable/spinner_custom"
                android:gravity="left|center_vertical"
                android:paddingLeft="4dip"
                android:textSize="16px" />

            <Spinner
                android:id="@+id/spinner2"
                android:layout_width="wrap_content"
                android:layout_height="40px"
                android:layout_marginRight="2dip"
                android:layout_weight="1"
                android:background="@drawable/spinner_custom"
                android:gravity="left|center_vertical"
                android:paddingLeft="4dip"
                android:textSize="16px" />
        </TableRow>

我该如何修复它?

具有自定义背景的屏幕:

http://img814.imageshack.us/img814/8284/spinner .jpg

在此处输入图像描述

i have one layout on Android, but if i change size of spinner my text are cut, i try custom background to spinner and try layout default but not resolve.

My XML:

            <Spinner
                android:id="@+id/spinner2"
                android:layout_width="wrap_content"
                android:layout_height="40px"
                android:layout_marginRight="2dip"
                android:layout_weight="1"
                android:background="@drawable/spinner_custom"
                android:gravity="left|center_vertical"
                android:paddingLeft="4dip"
                android:textSize="16px" />

            <Spinner
                android:id="@+id/spinner2"
                android:layout_width="wrap_content"
                android:layout_height="40px"
                android:layout_marginRight="2dip"
                android:layout_weight="1"
                android:background="@drawable/spinner_custom"
                android:gravity="left|center_vertical"
                android:paddingLeft="4dip"
                android:textSize="16px" />
        </TableRow>

how i can fix it?

Screen with custom background:

http://img814.imageshack.us/img814/8284/spinner.jpg

enter image description here

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

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

发布评论

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

评论(1

旧人哭 2025-01-03 12:35:49

Spinner 的自定义背景是图像还是 xml 文件?如果它是 xml 可绘制文件,请检查您是否没有在底部使用填充。

还可以尝试将layout_height值更改为wrap_content而不是设置为40px,这可能会导致问题。

Is the custom background for your Spinner an image or an xml file? If it's an xml drawable file check that you aren't using padding at the bottom.

Also try changing layout_height value to wrap_content rather than setting to 40px, that may by causing the problem.

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