Android:如何将大字体放入小按钮中?
任务:将大字符放入小按钮中。
问题:我注意到,当您使用非字母字符(例如 -、+、=.. 等)创建按钮时,文本下方和上方有很多“填充”,特别是当您增加字体大小时。当您使用字母字符时,它看起来很好。 IE。 这就是发生的事情
________
| |
| |
| ___ |
| |___| |
| |
| |
|________|
当我想要这个时。 。
________
| ___ |
| |___| |
|________|
中间的矩形是一个巨大的破折号。
我尝试将填充设置为零,但这不起作用。 有什么想法吗?
Task: fit large characters into a small button.
Problem: I noticed what when you create a button using non-alpha characters such as -, +, =.. etc, there is a lot of "padding" below and above the text, especially when you increase the font size. When you use alpha characters, it appears fine.
ie.
this is what happens
________
| |
| |
| ___ |
| |___| |
| |
| |
|________|
when i want this..
________
| ___ |
| |___| |
|________|
where the rectangle in the middle is a big giant dash.
I have tried setting the padding to zero, but that doesn't work.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
字体中的填充不在android中的绘图系统中!
您可以:
1- 添加 Typeface 字体处理,例如打字目的
2- 或者尝试创建您自己的字体,您可以在 XP 中使用私人字符编辑
欲了解更多信息,请看一下:
http://www.techtipsgeek.com/design- font-characters-own-choice-windows-xp/1621/
3-更好的做法,尝试使用图像而不是键入这些模式。
但请注意,当您使其工作时,请使用应用程序附带的字体字体,因为您不能保证所有设备都将使用您用来创建模式的相同字体。
祝你好运,
穆罕默德,
padding in font not in drawing system in android !
you can :
1- Add Typeface font dealing with such as typing purposess
2- Or try create your Own font for this you can use Private Character Edit in XP
for more info take a look on this :
http://www.techtipsgeek.com/design-font-characters-own-choice-windows-xp/1621/
3-Better practices, try to use images than typing those patters.
But note that when you make it working, use shipped typeface font with application because you cannot guarantee all devices will use the same font which you use to create patters.
good luck,
Mohammed,