10

我正在尝试在 TextView 中显示 2 个项目。他们有什么方法可以更改 TextView 中单个项目的字体吗?

这是我正在使用的 XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <TextView
        android:gravity="center_horizontal"
        android:paddingTop="5dp"
        android:paddingBottom="5dp"
        android:id="@+id/Rowtext"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:text="Listiems"
        android:background="@drawable/customshape"
         />

</LinearLayout>
4

5 回答 5

17

使用 android:textSize。

<TextView
    android:id="@+id/time"
    android:gravity="right"
    android:padding="5dp"
    android:textSize="40dp"
    android:textColor="#88ffff00"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:text="Time: 60"/>

如果用户可以在不破坏 UI 的情况下重新缩放文本,请使用 sp。如果重新缩放文本会破坏 UI,请使用 dp.

于 2014-07-12T18:59:05.270 回答
8

一种方法是使用 TextView.setText() 方法并用 HTML 提供它,如下所示:

import android.text.Html;

String n = "<b>bold</b> <small>small</small>";
TextView tv = (TextView) findViewById(...)
tv.setText(Html.fromHtml(n));

我经常将它用于一些小的标记(比如使部分更粗或更小)

于 2013-03-20T13:04:00.540 回答
2

使用此链接http://code.google.com/p/android-richtexteditor/source/browse/trunk/src/net/sgoliver/Html.java?r=4中的 HTML 类。我们可以从这个类中设置字体大小。普通的 android.text.Html 实际上会忽略字体大小。尝试和测试,它对我有用。

TextView tv = (TextView)findViewById(R.id.textview);

String s = "<p>Some Text here<br><b>hi </b><font size =\"20\"><b><i>\"italics</i></b></font><b><i> </i></b><b><i><u>underline</u></i></b></p>";

tv.setText(Html.fromHtml(s));
于 2013-04-08T12:34:49.363 回答
0

您可以像这样使用 html:

mytextView.setText(Html.fromHtml("<p> <font size="20" color="#0066FF" style="font-style:italic">Push this button</font> to start a new game.</p>"))

如果您不需要它们,请删除颜色和样式属性。

于 2013-03-20T13:10:31.703 回答
0

您应该在 XML 中的文本视图标记中添加行:

android:textSize="32sp"
于 2018-07-24T12:32:49.037 回答