Динамическая высота для строки ListView в android
Я вижу странное поведение с моим ListView,который я не могу обойти.
у меня есть ListView, который заполнен некоторыми данными. Каждая строка содержит изображение и три текстовые метки. Вот мой XML для строки (я раздуваю его в адаптере getView
способ):
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:paddingTop="0dip"
android:paddingBottom="0dip"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<ImageView android:id="@+id/Icon"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="2"
android:padding="2dp"
android:scaleType="fitCenter"
android:contentDescription="@string/app_icon"/>
<TextView android:id="@+id/TxtName"
android:scrollHorizontally="false"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:textColor="@android:color/black"
android:background="@color/list_bg1"
android:layout_weight="2"
android:padding="2dp"/>
<TextView android:id="@+id/TxtPackage"
android:scrollHorizontally="false"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="2"
android:textColor="@android:color/black"
android:background="@color/list_bg2"
android:padding="2dp"/>
<TextView android:id="@+id/TxtSource"
android:scrollHorizontally="false"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="2"
android:background="@color/list_bg3"
android:textColor="@android:color/black"
android:padding="2dp"/>
</LinearLayout>
теперь все, что входит в текстовые поля, может быть любой длины (от нескольких символов до 80-100 символов), и я хочу, чтобы метки просто обернуть и высоту строки, чтобы разверните, чтобы разместить высоту обернутых этикеток.
тем не менее, ярлыки обертываются нормально, но высота строки не расширяется, поэтому нижняя часть ярлыков отрезается. Вот мой getView
способ:
@Override
public View getView(int position, View convertView, ViewGroup parent) {
SetInfo app = (SetInfo)getItem(position);
if(app == null)
return null;
LinearLayout row = (LinearLayout) (convertView == null
? LayoutInflater.from(context).inflate(R.layout.listitem, parent, false)
: convertView);
((TextView)row.findViewById(R.id.TxtName)).setText(app.getName());
((TextView)row.findViewById(R.id.TxtPackage)).setText(app.getPackage());
((TextView)row.findViewById(R.id.TxtSource)).setText(app.getSource());
if(app.getIcon() != null)
((ImageView)row.findViewById(R.id.Icon)).setImageDrawable(app.getIcon());
return row;
}
как я могу иметь строки разной высоты, отрегулированные автоматически, чтобы соответствовать всему содержимому?
2 ответов
У меня была проблема sam, и ответ @maebe не работал для меня. Чтобы заставить его работать, мне пришлось вызвать requestLayout() на моем TextView в getView адаптера.
Итак, в вашем случае вам нужно будет вызвать requestLayout () для каждого TextView:
@Override
public View getView(int position, View convertView, ViewGroup parent) {
// Inflate your view etc.
row.findViewById(R.id.TxtName).requestLayout();
row.findViewById(R.id.TxtPackage).requestLayout();
row.findViewById(R.id.TxtSource).requestLayout();
return row;
}
Я пробовал всевозможные трюки, и это единственный, который работал в моем случае.