【发布时间】: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_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 中获取数据,但仍然注意到出现在列表视图中。 请帮忙
【问题讨论】:
-
在你的适配器中,在构造函数中尝试
super(context, resource, countryList); -
@PhanVanLinh 仍然得到一个错误,但是在这之后终于得到了来自视图区域的响应。
标签: java android android-listview