我怎样才能实现“Lettrine”?在安卓中渲染?
我有一个小问题,关于
如何在 android 中实现“Lettrine”(删除首字母大写字母)渲染? 我的意思是,一个自动渲染 lettrine 的小部件。
这是我正在寻找的示例:
我很确定没有“简单”方式”来做到这一点,但如果有的话可以帮助...... 欢迎所有想法。
如果您也对这种 Android 小部件感兴趣,我将很乐意合作 并根据 LGPL 许可发布我们的作品;-)
I've just a little question about
How can I implement a 'Lettrine' (dropped initial capital letter) render in android?
I mean, a widget that renders a lettrine automatically.
Here is an example of what I'm looking for:
I'm quite sure there is no "simple way" to do it, but if any could help...
All ideas are welcomed.
If you are also interested in that kind of android widget, I'll be happy to collaborate
and to release our work under LGPL license ;-)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最简单的方法是将文本放入具有适当 CSS 的 WebView 中,然后让浏览器解释该内容。
至于widgert,Android 中的所有布局都是矩形的。没有简单的方法可以做到这一点。我认为,您可以通过自定义 StaticLayout.
The easiest way would be to put the text in a WebView with the appropriate CSS, and let the browser interpret the thing.
As for widgerts, all layouts in Android are rectangular. There is no easy way to do this. I think, you can achieve this with a custom StaticLayout.