Spinner Android 中的半切文本
我在 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>
我该如何修复它?
具有自定义背景的屏幕:
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:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.