Android:带有标题和文本正文的滚动视图
我正在尝试创建一个简单的帮助屏幕,如下所示。我需要 8 个不同的标题,其下方的文本正文较小。我已经实现了滚动视图,但如何改变字体大小?
I'm trying to create a simple help screen that looks like the the one shown below. I need to have 8 different titles with smaller sized text bodies below them. I have implemented a scroll view, but how do I vary the font sizes?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
通过利用 TextView 能够呈现一组有限的 HTML 标记这一事实,您可以在单个 TextView 中获得类似的结果。例如,
将使用 Title1 作为较大字体部分标题、粗体和下划线渲染到 TextView 中。
这可能会让您的申请满意。
You can get a similar result in a single TextView by taking advantage of the fact that the TextView has the ability to present a limited set of HTML markup. For example
Will render into the TextView with Title1 as a larger font section header, bold and underlined.
This may be satisfactory for your application.
您可以尝试在 ListView、LinearLayout 或 TableLayout 中创建具有不同字体大小和样式的不同 TextView? Textview 还可以支持不同的样式,例如 HTML。
You can try to create different TextViews with different font sizes and styles within a ListView, LinearLayout or TableLayout? Textviews can also support different stylings like HTML.