Я рад быть частью вашего сообщества,
Я ищу, как решить эту проблему: текст из TextView переполняет экран ... (Из ListView)
Посмотрите на этот скриншот
Вот мой макет XML:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TableLayout android:layout_height="wrap_content" android:layout_width="match_parent">
<TableRow android:layout_width="wrap_content" android:layout_height="wrap_content">
<TableRow android:layout_width="wrap_content" android:layout_height="wrap_content">
<ImageView android:layout_width="100dp" android:padding="8dp" android:src="@drawable/nophotoactualite" android:id="@+id/img" android:layout_height="wrap_content"></ImageView>
</TableRow>
<LinearLayout android:layout_marginTop="3dp" android:orientation="vertical" android:layout_width="wrap_content" android:layout_height="wrap_content" android:weightSum="1">
<TextView android:id="@+id/item_title" android:textSize="20dp" android:textStyle="bold" android:text="TextView" android:textColor="#000000" android:layout_height="wrap_content" android:layout_width="fill_parent"></TextView>
<TextView android:text="TextView" android:id="@+id/item_subtitle" android:textSize="12dp" android:textColor="#999999" android:layout_width="fill_parent" android:layout_height="wrap_content"></TextView>
</LinearLayout>
</TableRow>
</TableLayout>
</LinearLayout>
РЕДАКТИРОВАТЬ: Я хочутекст, который начинает переполняться, переходит на следующую строку.
Заранее благодарю за помощь, С уважением.