繁体   English   中英

列表视图不会显示来自自定义阵列适配器的项目

[英]List view does not diplay items from custom array adapter

我已经为列表视图创建了一个自定义数组适配器,但是由于某种原因,数据没有显示在列表视图项中。 当我将log语句放入扩展ArrayAdapter的自定义适配器的getView方法中时,甚至连日志猫也什么都不显示。 这是持有列表视图的活动

public class booktable extends AppCompatActivity {
    ListView mylv;
    int[] array = new int[5];

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_booktable);
        mylv = findViewById(R.id.mylv);
        array = new int[]{1, 0, 0, 0, 1};

        ListAdapter la = new customadapter(getApplicationContext(),R.layout.activity_booktable,array);
        mylv.setAdapter(la);

   } 
}

这是我的自定义适配器

public class customadapter extends ArrayAdapter {
    LayoutInflater li;
    int[] table = new int[5];

    public customadapter(@NonNull Context context,int resource, int [] array) {
        super(context,resource);
        li = LayoutInflater.from(context);
        table = array;

    }

    @NonNull
    @Override
    public View getView(int position, @Nullable View convertView, @NonNull ViewGroup parent) {
        View v  = li.inflate(R.layout.custom_row,parent);
        ImageView img = v.findViewById(R.id.img);
        TextView tv = v.findViewById(R.id.tv);
        if(table[position]==0)
        {
            tv.setText("FULL");
            tv.setTextColor(Color.RED);
        }
        if(table[position]==1)
        {
            tv.setText("AVAILABLE");
            tv.setTextColor(Color.GREEN);
        }
        return v;
    }
}

尝试将参数数组或集合传递给ArrayAdapter构造函数,如下所示:

public customadapter(@NonNull Context context,int resource, int [] array) {
    super(context, resource, array);
    li = LayoutInflater.from(context);
    table = array;
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM