重力设置在三星设备上不起作用
我开发了一个应用程序,它显示从服务器检索的希伯来语字符串。 我已经在模拟器上测试了该应用程序,所有这些都已向右对齐。我用于
android:gravity="right"
TextView
。
当我在 Samsung TG-i9000 上测试我的应用程序时,“忽略”粗俗并将文本向左对齐。
如何修复?
I have developed an application which displays Hebrew strings that are retrived from a server.
I've tested the application on my emulator and all of them have been aligned to right. I'm using
android:gravity="right"
for the TextView
.
When I test my application on Samsung TG-i9000, in "ignure" the garvity and align the text to left.
How it can be fixed?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好像包含TextView的父布局有
layoutWidth="wrap_Content"
,如果是这样,则将其更改为“fill_Parent”
seems like the parent Layout containing TextView has
layoutWidth="wrap_Content"
, if so, then change it to"fill_Parent"