2 votes

Afficher le texte en GRAS

Comment afficher mon texte en gras dans la présentation graphique de mon xml ? Je voudrais que mes titres soient en gras, tandis que les résultats sont au format normal. Merci. J'espère que vous pourrez m'aider dans cette affaire.

<?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>

4voto

prateek Points 1968

Sur strings.xml

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

Utilisez cette approche pour obtenir plus de flexibilité dans le formatage du texte.

N'oubliez pas non plus d'utiliser, Html.fromHtml("your html string"); pour définir le texte dans le TextView

par exemple

String s="<b> I am text in bold </b> and I am not.";
TextView t=new TextView();
t.setText(Html.fromHtml(s));

2voto

Max Points 3259

Par exemple :

android:textStyle="bold"

ou lorsque l'italique est souhaité :

android:textStyle="italic"

Pour plus d'informations :

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

Consultez également ce fil de discussion pour plus d'informations :

Comment mettre le texte en gras dans Android ?

2voto

Akash Points 462

Si vous voulez que tout le texte de la TextView à utiliser avec audace,

android:textStyle="bold"

Si vous ne voulez qu'une partie du texte soit en gras, vous pouvez générer un fichier Spannable à partir de Html en utilisant Html.fromHtml() comme ceci :

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

Ici, le mot "échantillon" serait en gras.

Prograide.com

Prograide est une communauté de développeurs qui cherche à élargir la connaissance de la programmation au-delà de l'anglais.
Pour cela nous avons les plus grands doutes résolus en français et vous pouvez aussi poser vos propres questions ou résoudre celles des autres.

Powered by:

X