0

所以我有这个应用程序,我必须在其中制作一个RecyclerView包含可以删除/编辑的项目列表等

我遵循了 youtube 上的教程,并CardView在另一个布局上制作了一个自定义项目,并为该项目制作了一个自定义适配器。

事情是,根据项目的状态,我必须改变一些东西(例如背景颜色或文本颜色)。

当我在RecyclerView活动中这样做时,NullPointerException即使我有身份证,我也会得到。

TextViews在我进行改造调用的那一刻,我如何编辑以编程方式生成的项目列表中的那些?

boolean isEnded;
                if(!endedAt.equals("null"))
                {
                    endedAt = endedAt.substring(endedAt.indexOf("T") + 1, endedAt.lastIndexOf(":"));
                    isEnded=true;
                }
                else
                {
                    endedAt="ongoing";
                    isEnded=false;
                }
                item.timeDifference=createdAt+" - "+endedAt;
                if(externalSystem.equals("null"))
                {
                    item.externalSystem="";
                }
                else
                {
                    item.externalSystem = externalSystem;
                }
                Log.i("attr",externalSystem);
                items.add(item);

                itemAdapter=new ItemAdapter(getApplicationContext(), items);
                recyclerView.setAdapter(itemAdapter);
                if(isEnded) {
                error->    externalSystemView.setTextColor(Color.BLACK);
                }

该应用程序相当大,但我认为您可以从这段代码中获得灵感。

这是错误:尝试在空对象引用上调用虚拟方法“void android.widget.TextView.setTextColor(int)”

public class ItemAdapter extends     
RecyclerView.Adapter<ItemAdapter.ItemViewHolder>{

private Context context;
private  ArrayList<Item> itemList;

public ItemAdapter(Context context, ArrayList<Item> itemList)
{
    this.context=context;
    this.itemList=itemList;
}

@Override
public ItemViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
    LayoutInflater layoutInflater=LayoutInflater.from(parent.getContext());
    View view=layoutInflater.inflate(R.layout.item_layout,parent,false);
    ItemViewHolder itemViewHolder=new ItemViewHolder(view);
    return itemViewHolder;
}

@Override
public void onBindViewHolder(ItemViewHolder holder, int position) {
    Item item=itemList.get(position);
    holder.timeDifference.setText(item.timeDifference);
    holder.title.setText(item.title);
    holder.timeCounter.setText(item.timeCounter);
    holder.externalSystem.setText(item.externalSystem);
    holder.type.setText(item.type);
    holder.project.setText(item.project);
    MY IDEA
    "holder.timeDifference.setTextColor(Color.parseColor(item.color));"
}

@Override
public int getItemCount() {
    if(itemList!=null)
        return itemList.size();
    else
        return 0;
}


    public static class ItemViewHolder extends RecyclerView.ViewHolder
{
    public CardView cardViewItem;
    public TextView title;
    public TextView project;
    public TextView externalSystem;
    public TextView timeDifference;
    public TextView timeCounter;
    public TextView type;

    public ItemViewHolder(View itemView)
    {
        super(itemView);
        cardViewItem=(CardView)itemView.findViewById(R.id.card_view_item);
        title=(TextView)itemView.findViewById(R.id.title);
        project=(TextView)itemView.findViewById(R.id.project);
        externalSystem=
        (TextView)itemView.findViewById(R.id.external_system);
        timeDifference=   
        (TextView)itemView.findViewById(R.id.time_difference);
        timeCounter=(TextView)itemView.findViewById(R.id.time_counter);
        type=(TextView)itemView.findViewById(R.id.type);
    }

编辑:我想我找到了一种方法,但我不知道它是否是最好的

4

1 回答 1

1

Item解决方案将涉及稍微改变你的班级。

您的问题是您没有正确地将boolean触发器传递给RecyclerView.AdapterActivity。例如isEndedBoolean,了解项目处于什么状态的价值。您在使用所有三个类时都有正确的想法。

我建议做的是在你的Item类中创建一个构造函数,传递你的值Activity以在你的适配器中使用。我觉得它更容易使用getterssetters而不是像你一样直接从代码中分配变量。

那么让我们开始吧,

 boolean isEnded;
  if(!endedAt.equals("null")) {
     endedAt = endedAt.substring(endedAt.indexOf("T") + 1, endedAt.lastIndexOf(":"));
     isEnded=true;
  } else {
     endedAt="ongoing";
     isEnded=false;
  }
    String timeDifference = createdAt+" - "+endedAt;
  if(externalSystem.equals("null")) {
    externalSystem="";
  } else {
    externalSystem = externalSystem;
  }
    Log.i("attr",externalSystem);
    items.add(new ItemModel(isEnded, timeDifference, externalSystem);

    itemAdapter=new ItemAdapter(this, items);
    recyclerView.setAdapter(itemAdapter);
    itemAdapter.notifyDataSetChanged();

您会注意到我如何为数组ItemModel中的每一行变量添加一个新变量RecyclerView,然后将该数组传递给Adapter. 这样可以更容易地知道哪些变量正在传递给模型,从而知道在Adapter.

ItemModel该类的示例如下所示:

public class ItemModel {
    // Getter and Setter model for recycler view items
    private boolean isEnded;
    private String timeDifference;
    private String externalSystem;
    //other variables, title etc etc 

    public ItemModel(boolean isEnded, String timeDifference, String externalSystem) {

        this.isEnded = isEnded;
        this.timeDifference = timeDifference;
        this.externalSystem = externalSystem;
        //only pass to the model if you can access it from code above  otherwise to assign the variables statically like you have.
    }

    public boolean getIsEnded() {return isEnded;}

    public String getTimeDifference() {return timeDifference;}

    public String getExternalSystem() { return externalSystem; }

}

上面的信息只是指导您创建更有效的模型框架来传递数据而不是使用静态变量。

现在要解决您的问题,您需要检查if (item.getIsEnded())然后更改与该if条件相对应的文本颜色。

RecyclerView.Adapter onBindViewHolder看起来像:

@Override
public void onBindViewHolder(ItemViewHolder holder, int position) {
    ItemModel item =itemList.get(position);
    holder.timeDifference.setText(item.getTimeDifference());
    holder.title.setText(item.title);
    holder.timeCounter.setText(item.timeCounter);
    holder.externalSystem.setText(item.getExternalSystem());
    holder.type.setText(item.type);
    holder.project.setText(item.project);
    if (item.getIsEnded() {
    holder.timeDifference.setTextColor(item.color);
    } else {
    holder.timeDifference.setTextColor(item.color);
    }
}

的目的Adapter是扩展布局,将组件绑定到该布局,并对与专用位置的布局对应的项目执行功能。您需要知道列表中的哪个项目处于哪个状态,仅靠您自己无法做到这一点Activity。请注意Adapter在将代码与您ActivityRecyclerView.

于 2017-01-12T14:56:24.383 回答