获得 250 多个项目,但自定义列表视图不显示任何内容
Posted
技术标签:
【中文标题】获得 250 多个项目,但自定义列表视图不显示任何内容【英文标题】:Getting 250+ items but Custom Listview not displaying anything 【发布时间】:2021-05-01 23:07:43 【问题描述】:我刚刚创建了一个带有自定义视图的列表视图,以创建一个国家/地区列表供选择
<?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_
android:layout_
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_
android:layout_
android:background="@color/primary"
/>
</LinearLayout>
自定义视图
<LinearLayout
android:layout_
android:layout_
android:orientation="horizontal">
<ImageView
android:id="@+id/view_layout_country_list_item_country_icon_image"
android:layout_
android:layout_
android:src="@drawable/gjh_logo_b"
/>
<TextView
android:id="@+id/view_layout_country_list_item_country_name"
android:layout_
android:layout_
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_
android:layout_
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 中获取数据,但仍然注意到出现在列表视图中。 请帮忙
【问题讨论】:
在你的适配器中,在构造函数中尝试super(context, resource, countryList);
@PhanVanLinh 仍然得到一个错误,但是在这之后终于得到了来自视图区域的响应。
【参考方案1】:
您的代码的问题是您从 getView
返回 super.getView(position, convertView, parent)
而您应该返回刚刚创建的 View
即 convertView
。
对于超级构造函数调用,您必须使用super(context, resource, countryList)
,以便适配器可以返回列表的大小。
如下更改getView
public View getView(int position, @Nullable View convertView, @NonNull ViewGroup parent)
//...
return convertView;
您现在应该使用RecyclerView
。 ListView
和 GridView
长期以来都是遗留的小部件。 RecyclerView
更加灵活。
【讨论】:
以上是关于获得 250 多个项目,但自定义列表视图不显示任何内容的主要内容,如果未能解决你的问题,请参考以下文章
我想获得 imdb 的前 250 部电影的列表,但我不能,因为它给了我“”而不是整个列表