Я пытаюсь создать приложение, которое будет отображать мой пользовательский макет value_item в списке с помощью специального адаптера.Мой макет value_item состоит из 3 текстовых представлений, выровненных по горизонтали.Но когда я пытаюсь построить макет в виде списка, отображается только третье текстовое представление.Я много пытался выяснить проблему, но я не смог определить местонахождение проблемы.Код для значения Адаптер приведен ниже:
public class ValueAdapter extends ArrayAdapter<Value>{
public ValueAdapter(Context context, List<Value> values)
{
super(context,0,values);
}
@NonNull
@Override
public View getView(int position, @Nullable View convertView, @NonNull ViewGroup parent) {
View listItemView = convertView;
if (listItemView == null) {
listItemView = LayoutInflater.from(getContext()).inflate(
R.layout.value_item, parent, false);
}
Value channel = getItem(position);
TextView val = (TextView) listItemView.findViewById(R.id.val_view);
val.setText(channel.getval()+" ");
TextView mtime = (TextView) listItemView.findViewById(R.id.time_view);
val.setText(channel.getTime());
TextView mdate = (TextView) listItemView.findViewById(R.id.date_view);
val.setText(channel.getDate());
return listItemView;
}
}
И код для макета value_item:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:weightSum="5"
android:background="#424242"
android:padding="8dp"
android:layout_margin="3dp">
<TextView
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="match_parent"
android:textSize="25dp"
tools:text="Hello"
android:layout_marginLeft="10dp"
android:id="@+id/val_view"
/>
<TextView
android:layout_width="0dp"
android:layout_weight="2"
android:layout_height="match_parent"
android:textSize="24dp"
tools:text="24-12-2200"
android:id="@+id/time_view"
/>
<TextView
android:layout_width="0dp"
android:layout_weight="2"
android:layout_height="match_parent"
android:textSize="24dp"
tools:text="24-12-2200"
android:id="@+id/date_view"
/>
</LinearLayout>