我使用自定义适配器填充包含多个项目的ListView。
我这样做是这样的:
AdapterDetalleVentas = new adapterDetalleVentas(actDetalleVenta, listaDetalleDeVentas);
lvPagosActDetalleVenta.setAdapter(AdapterDetalleVentas);
其中:
private static List<DetalleVenta> listaDetalleDeVentas;
private adapterDetalleVentas AdapterDetalleVentas;
private class adapterDetalleVentas extends ArrayAdapter<DetalleVenta> {
Context context;
List<DetalleVenta> detallesVentas;
public adapterDetalleVentas(Context context, List<DetalleVenta> detallesVentas) {
super(context, 0, detallesVentas);
this.context = context;
this.detallesVentas = detallesVentas;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
DetalleVenta detalleVenta = getItem(position);
if (convertView == null) {
convertView = LayoutInflater.from(getContext()).inflate(R.layout.fila_doble_horizontal, null, false);
}
TextView tvNombre = (TextView) convertView.findViewById(R.id.tvNombreFilaDobleHorizontal);
TextView tvCantidad = (TextView) convertView.findViewById(R.id.tvCantidadFilaDobleHorizontal);
tvNombre.setText(detalleVenta.getNombre());
tvCantidad.setText(String.valueOf(detalleVenta.getCantidad()));
return convertView;
}
}
fila_doble_horizontal写如下:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:weightSum="1">
<TextView
android:id="@+id/tvNombreFilaDobleHorizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Nombre"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textSize="25px"
android:layout_weight="0.85"/>
<TextView
android:id="@+id/tvCantidadFilaDobleHorizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:text="Cantidad"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textSize="25px"
android:layout_weight="0.15"/>
</LinearLayout>
看起来应该是这样的:
但是当它运行时,应用程序看起来像这样:
Ca和Calzado用于TextView tvNombre,数字4和23用于TextView tvCantidad。
这类似于我没有使用weightSum和layout_weight:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:id="@+id/tvNombreFilaDobleHorizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Nombre"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textSize="25px"/>
<TextView
android:id="@+id/tvCantidadFilaDobleHorizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:text="Cantidad"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textSize="25px"/>
</LinearLayout>
关于如何解决这个问题的任何建议或想法?
答案 0 :(得分:0)
感谢回答这个帖子的人们。
我也试过但问题还在继续:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:weightSum="1">
<TextView
android:id="@+id/tvNombreFilaDobleHorizontal"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="Nombre"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textSize="25px"
android:layout_weight="0.85"/>
<TextView
android:id="@+id/tvCantidadFilaDobleHorizontal"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:gravity="center"
android:text="Cantidad"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textSize="25px"
android:layout_weight="0.15"/>
</LinearLayout>
问题出在ListView的布局中:
原来是这样的:
<ListView
android:id="@+id/lvPagosActDetalleVenta"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="center"
android:layout_marginLeft="8px"
android:layout_marginRight="8px">
</ListView>
解决方法是将lvPagosActDetalleVenta上的android:layout_width =“wrap_content”更改为android:layout_width =“match_parent”。