J'utilise un SimpleCursorAdapter
pour afficher un seul CheckedTextView
. Je sais que la meilleure façon de le faire est d'utiliser simple_list_item_multiple_choice
y android.R.id.text1
.
adapter = new SimpleCursorAdapter(getApplicationContext(),
android.R.layout.simple_list_item_multiple_choice, rules,
new String[]{Constants.KEY_RULE}, new int[]{android.R.id.text1});
Si le texte de KEY_RULE
est supérieure à deux lignes, Android ne l'enroule pas, mais la cache. Existe-t-il un moyen simple de contourner ce problème sans avoir à implémenter mon propre adaptateur ?
Retrouvez mon code xml ci-dessous :
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView android:id="@+id/header" android:layout_width="fill_parent"
android:layout_height="wrap_content" android:text="@string/rule_selection_for_revision_list_title"
android:padding="4dip" android:background="#000000" android:textColor="#ffffff" android:textStyle="bold" />
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_weight="1.0" />
<TextView android:textSize="18sp" android:textStyle="bold"
android:id="@id/android:empty" android:layout_width="fill_parent"
android:layout_height="fill_parent" android:gravity="center_vertical|center_horizontal"
android:text="There are no rules to consider." />
</LinearLayout>
Y a-t-il un moyen de réduire la taille de la police pour qu'elle tienne sur deux lignes ?