2

如何在 xml 的图形布局中以粗体显示文本?我希望我的标题是粗体,而结果是正常格式。谢谢你。我希望你能帮我解决这个问题。

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

    <TextView
        android:id="@+id/coordinates"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/instruction" />

    <TextView
        android:id="@+id/result"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/result" />

    <Button
        android:id="@+id/btn_process"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="@string/btn_text" />

    <ScrollView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" >

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="300dp"
            android:orientation="vertical" >

            <TextView
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:text="Original" />

            <ImageView
                android:id="@+id/imageSource"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:src="@drawable/test_ideal_graph" />

            <TextView
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:text="Result" />

            <FrameLayout
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" >

                <ImageView
                    android:id="@+id/imageAfter"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content" />

                <ProgressBar
                    android:id="@+id/progressBar"
                    style="?android:attr/progressBarStyleLarge"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content" />
            </FrameLayout>
        </LinearLayout>
    </ScrollView>

</LinearLayout>
4

3 回答 3

4

strings.xml

<string name="your_string_name"><b> I am bold text</b> And I am not bold</string>

使用这种方法可以在格式化文本时获得更大的灵活性。

还记得使用,Html.fromHtml("your html string");在 TextView 中设置文本

例如

String s="<b> I am text in bold </b> and I am not.";
TextView t=new TextView();
t.setText(Html.fromHtml(s));
于 2013-02-25T07:59:13.563 回答
2

例如:

android:textStyle="bold"

或者当需要斜体时:

android:textStyle="italic"

了解更多信息:

http://developer.android.com/reference/android/text/style/package-summary.html

还可以查看此线程以获取更多信息:

如何在 Android 中将文本更改为粗体?

于 2013-02-25T07:57:55.733 回答
2

如果您希望 中的所有文本都TextView使用粗体,

android:textStyle="bold"

如果你只希望它的一部分是粗体的,你可以使用这样的Spannable从 Html生成一个:Html.fromHtml()

String text = "This is some <b>sample</b> text"; yourTextView.setText(Html.fromHtml(text));

这里的“样本”会以粗体显示。

于 2013-02-25T10:41:58.360 回答