Android:带有标题和文本正文的滚动视图

发布于 2024-10-26 14:22:39 字数 143 浏览 1 评论 0原文

我正在尝试创建一个简单的帮助屏幕,如下所示。我需要 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?

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

爱的十字路口 2024-11-02 14:22:39

通过利用 TextView 能够呈现一组有限的 HTML 标记这一事实,您可以在单个 TextView 中获得类似的结果。例如,

TextView t = (TextView)findViewById(R.id.text1);

t.setText(Html.fromHtml("<H1><u><em>Title1</em></u></H1>Details for section 1<H1><u><em>Title2</em></u></H1>Detail for Section 2"));

将使用 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

TextView t = (TextView)findViewById(R.id.text1);

t.setText(Html.fromHtml("<H1><u><em>Title1</em></u></H1>Details for section 1<H1><u><em>Title2</em></u></H1>Detail for Section 2"));

Will render into the TextView with Title1 as a larger font section header, bold and underlined.

This may be satisfactory for your application.

眉黛浅 2024-11-02 14:22:39

您可以尝试在 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文