获取 250 多个项目但自定义列表视图不显示任何内容

Getting 250+ items but Custom Listview not displaying anything

我刚刚创建了一个带有自定义视图的列表视图来为 select

创建一个国家/地区列表
<?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>

在Activity

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 中的数据,但仍然注意到列表视图中出现了数据。 请帮忙

您的代码的问题是您从 getView returning super.getView(position, convertView, parent) 而您应该 returning 您刚刚创建的 ViewconvertView 。 对于超级构造函数调用,您必须使用 super(context, resource, countryList) 以便 Adapter 可以 return 列表的大小。

改变getView如下

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

另外你现在应该使用 RecyclerViewListViewGridView 是很长一段时间以来的遗留小部件。 RecyclerView 更加灵活。