我需要将数据库中的对象转换为地图,该怎么办?
应在对象内部包含数据的变量
@Override
public RecyclerView.ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
this.context = parent.getContext();
RecyclerView.ViewHolder vh;
View v = LayoutInflater.from(context).inflate(R.layout.anylayout, parent, false);
vh = new RowVH(v);
return vh;
}
我如何从数据库中获取该对象
public Map<Byte, Byte> currentSkills = new ConcurrentHashMap<>();
我做了一些研究,发现有一些库可以做到这一点,有什么方法可以在不使用外部库的情况下做到这一点?