首页 > 解决方案 > 获得 250 多个项目,但自定义列表视图不显示任何内容

问题描述

我刚刚创建了一个带有自定义视图的列表视图,以创建一个国家列表以供选择

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/primary_light"
    android:orientation="vertical"
    tools:context=".RnActivity.RnView.RnUser.ActivitySignUpOptions">


    <ListView
        android:id="@+id/country_list_for_select_list_area"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@color/primary"
        />


</LinearLayout>

自定义视图

<LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="horizontal">

            <ImageView
                android:id="@+id/view_layout_country_list_item_country_icon_image"
                android:layout_width="50dp"
                android:layout_height="match_parent"
                android:src="@drawable/gjh_logo_b"
                />

            <TextView
                android:id="@+id/view_layout_country_list_item_country_name"
                android:layout_width="0dp"
                android:layout_height="match_parent"
                android:gravity="start|center_vertical"
                android:layout_weight="1"
                android:text="India"
                android:textSize="18sp" />


            <TextView
                android:id="@+id/view_layout_country_list_item_country_code"
                android:layout_width="50dp"
                android:layout_height="match_parent"
                android:gravity="center|center_vertical"
                android:layout_gravity="right"
                android:text="IN"
                android:textSize="18sp"
                />

        </LinearLayout>

活动中

ListView country_list_for_select_list_area;
    @Override
    public void lodeControls() {
        country_list_for_select_list_area=findViewById(R.id.country_list_for_select_list_area);
    }

    @Override
    public void setEvents() {

    }

    RxAdopterCountry countryAdopter;
    @Override
    public void createAdopters() {
        countryAdopter=new RxAdopterCountry(getActivity(),R.layout.view_layout_country_list_item, RsXtraCountryList.getInstance().getCountryList());
    }

    @Override
    public void setData() {
        country_list_for_select_list_area.setAdapter(countryAdopter);
    }

在采用者中

private final ArrayList<RentCountry> countryList;
private Context context;


public RxAdopterCountry(@NonNull Context context, int resource, ArrayList<RentCountry> countryList) {
    super(context, resource);
    this.context=context;
    this.countryList=countryList;
}


public View getView(int position, @Nullable View convertView, @NonNull ViewGroup parent) {
    if(convertView==null){
        convertView= LayoutInflater.from(context).inflate(R.layout.view_layout_country_list_item, parent, false);
    }

    ImageView view_layout_country_list_item_country_icon_image=convertView.findViewById(R.id.view_layout_country_list_item_country_icon_image);
    TextView view_layout_country_list_item_country_name=convertView.findViewById(R.id.view_layout_country_list_item_country_name);
    TextView view_layout_country_list_item_country_code=convertView.findViewById(R.id.view_layout_country_list_item_country_code);

    view_layout_country_list_item_country_name.setText(countryList.get(position).getName());
    view_layout_country_list_item_country_code.setText(countryList.get(position).getCode());
    view_layout_country_list_item_country_icon_image.setImageResource(countryList.get(position).getFlag_id());
    return super.getView(position, convertView, parent);
}

我调试了整个代码,有 250 个项目进来

private final ArrayList<RentCountry> countryList;

但列表视图什么也没显示

我做错了什么?我尝试了一切并调试了整个代码 10 次。是的,我在 ArrayList 中获取数据,但仍然注意到出现在列表视图中。请帮忙

标签: javaandroidandroid-listview

解决方案


您的代码的问题是您正在返回super.getView(position, convertView, parent)getView而您应该返回View刚刚创建的convertView. 对于超级构造函数调用,您必须使用super(context, resource, countryList)以便适配器可以返回列表的大小。

改变getView 如下

public View getView(int position, @Nullable View convertView, @NonNull ViewGroup parent) {
    //...
    return convertView;
}

你也应该RecyclerView现在使用。ListView并且GridView很长一段时间都是遗留的小部件。 RecyclerView灵活得多。


推荐阅读