web-dev-qa-db-fra.com

Définir le texte dans TextView à l'aide de Html.fromHtml

Je dois montrer un texte en trois parties, donc j'ai utilisé Html.fromHtml comme ceci:

txtvw.setText(Html.fromHtml("<p align=right> <b> "
                    + "Hi!" + " </br> <font size=6>"
                    + " How are you "+"</font> </br>"
                    + "I am fine" + "  </b> </p>"));

Le code HTML est correct, mais dans l'appareil, il s'affiche sur une seule ligne.

ma déclaration XML de textview est:

   <RelativeLayout
    Android:id="@+id/Home"
    Android:layout_width="fill_parent"
    Android:layout_height="60dp"
    Android:background="@drawable/transparentfooter"
    Android:layout_above="@+id/bottombar" >


     <TextView 
    Android:id="@+id/txt"
    Android:layout_width="wrap_content"
    Android:layout_height="fill_parent"
    Android:textColor="@Android:color/white"/>

    </RelativeLayout>
13
zaiff

La façon dont vous avez utilisé la balise <br> est inappropriée. Utilisez le suivant:

txtvw.setText(Html.fromHtml("<p align=right> <b> "
            + "Hi!" + " <br/> <font size=6>"
            + " How are you "+"</font> <br/>"
            + "I am fine" + "  </b> </p>"));

Ce devrait être <br/> et non </br>. J'ai testé ce code et il affiche les 3 lignes comme prévu.

15
Arun George
Html.fromHtml(String source)

maintenant déconseillé d'Api-24.

Depuis Api-24, cette méthode a été remplacée par

Html.fromHtml(String source,int flags)

Nous pouvons donc utiliser comme ci-dessous Api 24

txtvw.setText(Html.fromHtml("<p align=right> <b> "
            + "Hi!" + " <br/> <font size=6>"
            + " How are you "+"</font> <br/>"
            + "I am fine" + "  </b> </p>"),Html.FROM_HTML_MODE_LEGACY);
2
Lins Louis

Définissez la balise lines pour votre mise en page Android: lines = "4"

<RelativeLayout xmlns:Android="http://schemas.Android.com/apk/res/Android"
    xmlns:tools="http://schemas.Android.com/tools"
    Android:layout_width="match_parent"
    Android:layout_height="match_parent" >

    <TextView
        Android:id="@+id/text"
        Android:layout_width="wrap_content"
        Android:layout_height="wrap_content"
        Android:layout_centerHorizontal="true"
        Android:layout_centerVertical="true"
        Android:lines="4"                
        Android:text="@string/hello_world"
        tools:context=".MainActivity" />

</RelativeLayout>

Écrire les balises HTML "br" correctes

 TextView text =(TextView)findViewById(R.id.text);        
        text .setText(Html.fromHtml("<p align=right> <b> "
                + "<br>" +"Hi!" + "  </br> "
                + "<br> How are you "+" </br>"
                + "<br>I am fine" + " </br> </b> </p>"));
1
Yahor10