Texte tronqué dans un bouton
Bonjour,
J'ai un LinearLayout qui inclus un Button, mais le texte reste tronqué, il n'y a que le premier mot qui apparais. Le texte est défini comme ceci
Code:
<string name="more">Voir plus de biens de l\'agence</string>
<
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| LinearLayout android:layout_width="fill_parent"
android:layout_height="20dip"
android:id="@+id/linearLayoutMore"
android:orientation="vertical"
android:singleLine="true">
<Button
android:id="@+id/ImageButtonSeeOtherAssets"
android:layout_width="fill_parent"
android:layout_height="20dip"
android:background="@color/transparence"
android:drawableLeft="@drawable/icone_more_assets_button"
android:text="@string/more"
android:textColor="@color/gray"
android:textSize="12sp" >
</Button>
</LinearLayout> |
Je ne vois pas d'ou ça vient, merci d'avance