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

1つの方法は、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 に答える