如何制作自定义ListView?

时间:2019-02-20 11:12:11

标签: android listview

我想从listView中创建一个可重用的Listview控件,在其中可以控制列,说我想加载3列列表视图,有时是2有时是4。 如何以编程方式控制列表视图的列和行。根据我的json值,我将显示列表。 我也想使某些列也可编辑。这也需要由代码级别

控制

这是我开始的代码:

import android.content.Context;
import android.graphics.Color;
import android.graphics.PorterDuff;

import org.json.JSONArray;
import org.json.JSONObject;
import org.w3c.dom.Element;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;

import java.io.IOException;
import java.util.ArrayList;
import java.util.List;

public class LayoutAdvancedList extends ListView {
    private String m_name;
    private int m_editMask = 0;
    private int m_EditedRowIndex = 0;
    private int m_EditedFieldIndex = 0;
    public String getName() {
        return m_name;
    }
    public void setName(String name) {
        this.m_name = name;
    }
    public void setMaxLength(final int maxLength) {
        if (maxLength > 0) {
           // super.setFilters(new InputFilter[]{new InputFilter.LengthFilter(maxLength)});
        } else {
         //   super.setFilters(new InputFilter[]{});
        }
    }
    public void setReadOnly(final boolean readOnly) {
        super.setFocusable(!readOnly);
        super.setFocusableInTouchMode(!readOnly);
        super.setClickable(!readOnly);
        super.setLongClickable(!readOnly);
       // super.setCursorVisible(!readOnly);
    }
    public LayoutAdvancedList(Context context) {
        super(context);
        LayoutInitialize(context);
    }
    public LayoutAdvancedList(Context context, AttributeSet attrs) {
        super(context, attrs);
        LayoutInitialize(context);
    }
    public LayoutAdvancedList(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
        LayoutInitialize(context);
    }
    @Override
    public void setEnabled(boolean enabled) {
        super.setEnabled(enabled);
        if (enabled) {
            this.getBackground().setColorFilter(null);
        } else {
            this.getBackground().setColorFilter(Color.GRAY, PorterDuff.Mode.MULTIPLY);
        }
    }

2 个答案:

答案 0 :(得分:1)

如果可以选择的话,应该为此使用GridLayoutManager的RecyclerView,这样就可以动态选择列数:

recyclerView.setLayoutManager(new GridLayoutManager(this, numberOfColumns));

Here's an example of how to make a RecyclerView

答案 1 :(得分:0)

根据您的要求,ListView中的每个项目大概都是由子视图定义的,这些子视图排列成每行2-4列。只需使用view.setVisibility(View.GONE)view.setVisibility(View.VISIBLE)view.setVisibility(View.INVISIBLE)

以编程方式控制每个列的存在/不存在