Android Affichage HTML dans une ListView

Désolé si c'est évident pour tout le monde mais je suis un mineur de la difficulté à comprendre comment faire pour afficher le code html à l'intérieur de ma listview.

Ma liste vue est déclarée.

ListView lv1 = (ListView) findViewById(R.id.ListView01);

Je le remplir (non illustré) puis mis mon listview ici avec un ArrayAdapter.

lv1.setAdapter(new ArrayAdapter<String>(SearchByFood.this, R.layout.new_list_view, foods));

Plus bas, j'ai créer un nouveau tableau de chaînes de caractères que je veux avoir en gras dans les tags. J'ai ensuite ajouter ce nouveau tableau (appelé arr_sort) à la arrayadapter insdie un onTextChanged() la méthode.

lv1.setAdapter(new ArrayAdapter<String>(SearchByFood.this, R.layout.new_list_view, arr_sort));

Alors, maintenant que mon nouveau Tableau de Chaînes de caractères a < b > balises en elle. Comment puis-je faire de ma listview afficher le texte en gras?

Voici mon new_list_view

    <TextView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@android:id/text1"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:textColor="@color/grey2"
    android:textSize="20sp"
    android:gravity="center_vertical"
    android:paddingLeft="6dip"
    android:minHeight="40dip"
/> 

Et voici mon ListView dans ma page principale.

        <ListView
        android:id="@+id/ListView01"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/rounded_corners_green"
        android:cacheColorHint="#00000000"
        android:divider="@color/green6"
        android:dividerHeight="1px"
        android:fastScrollEnabled="true" >
    </ListView>

Toute aide serait grandement appréciée.

InformationsquelleAutor S.A.Jay | 2012-03-13