我一直在使用RecyclerView添加动态标头。我提供了一个样本图像,如下所示。
在上面的图像中,孩子们是有限的,这不属于我的情况。标题后我有不确定的孩子。
基本上不是 header0 ,而是像 MAR 这样的月份名称,以及 MAR 月份中发生的事情将会到来。这些数据来自API,即Web Service,其中的日期也即将到来,但我正在努力为我上面解释的内容创建逻辑。
我试过的是下面的内容。下面是我创建的示例项目,因为原始代码是保密的,它具有与原始代码类似的逻辑问题。
MainActivity.java
public class MainActivity extends AppCompatActivity {
private RecyclerView rv;
private ArrayList<Bean> beanArrayList = new ArrayList<>();
private ArrayList<Bean> beanArrayListToPopulate = new ArrayList<>();
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
addDataToBean();
rv = findViewById(R.id.rv);
rv.setLayoutManager(new LinearLayoutManager(this));
String prevMonth = null;
for (int i = 0; i < beanArrayList.size(); i++) {
Bean bean = new Bean();
bean.setFirstName(beanArrayList.get(i).getFirstName());
String newMonth;
String createdDate = beanArrayList.get(i).getCreatedDate();
if (createdDate != null) {
newMonth = createdDate.split(" ")[1].trim();
if (!newMonth.equalsIgnoreCase(prevMonth)) {
bean.setViewType(Adapter.VIEW_TYPE_ITEM);
} else if (newMonth.equalsIgnoreCase(prevMonth)) {
bean.setViewType(Adapter.VIEW_TYPE_HEADER);
bean.setHeaderString(newMonth);
}
prevMonth = newMonth;
}
beanArrayListToPopulate.add(bean);
}
rv.setAdapter(new Adapter(beanArrayListToPopulate));
}
private void addDataToBean() {
SimpleDateFormat sdf = new SimpleDateFormat("dd MMM yyyy");
Date currentDate = new Date();
Calendar calendar = Calendar.getInstance();
calendar.setTime(currentDate);
for (int i = 0; i < 50; i++) {
Bean bean = new Bean();
calendar.add(Calendar.DATE, 10);
Date newDate = calendar.getTime();
bean.setCreatedDate(sdf.format(newDate));
bean.setFirstName("Maulik - " + i);
beanArrayList.add(bean);
}
}
}
Adapter.java
public class Adapter extends RecyclerView.Adapter<RecyclerView.ViewHolder> {
public static final int VIEW_TYPE_ITEM = 0;
public static final int VIEW_TYPE_HEADER = 1;
private ArrayList<Bean> mBeanList;
public Adapter(ArrayList<Bean> beanList) {
this.mBeanList = beanList;
}
@Override
public RecyclerView.ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
View view;
if (viewType == VIEW_TYPE_HEADER) {
view = LayoutInflater.from(parent.getContext()).inflate(R.layout.header, parent, false);
return new VHHeader(view);
} else if (viewType == VIEW_TYPE_ITEM) {
view = LayoutInflater.from(parent.getContext()).inflate(R.layout.item, parent, false);
return new VHItem(view);
}
throw new RuntimeException("There is no type that matches the type " + viewType + ". Make sure you are using view types correctly!");
}
@Override
public void onBindViewHolder(RecyclerView.ViewHolder holder, int position) {
if (holder instanceof VHHeader) {
((VHHeader) holder).tvHeader.setText(mBeanList.get(position).getHeaderString());
} else if (holder instanceof VHItem) {
((VHItem) holder).tvItem.setText(mBeanList.get(position).getFirstName());
}
}
@Override
public int getItemCount() {
return mBeanList.size();
}
@Override
public int getItemViewType(int position) {
return mBeanList.get(position).getViewType();
}
class VHItem extends RecyclerView.ViewHolder {
private TextView tvItem;
public VHItem(View itemView) {
super(itemView);
tvItem = itemView.findViewById(R.id.tv_item);
}
}
class VHHeader extends RecyclerView.ViewHolder {
private TextView tvHeader;
public VHHeader(View itemView) {
super(itemView);
tvHeader = itemView.findViewById(R.id.tv_header);
}
}
}
Bean.java
public class Bean {
private String createdDate;
private String firstName;
private int viewType;
private String headerString;
public String getCreatedDate() {
return createdDate;
}
public void setCreatedDate(String createdDate) {
this.createdDate = createdDate;
}
public String getFirstName() {
return firstName;
}
public void setFirstName(String firstName) {
this.firstName = firstName;
}
public int getViewType() {
return viewType;
}
public void setViewType(int viewType) {
this.viewType = viewType;
}
public String getHeaderString() {
return headerString;
}
public void setHeaderString(String headerString) {
this.headerString = headerString;
}
}
输出如下:
先谢谢。!
答案 0 :(得分:0)
问题是您有一个Bean
列表,并且您希望在这是新月时添加标题。因此,当月份发生变化时,您需要在beanArrayListToPopulate
中添加Bean
和标题。因此,您需要创建一个额外的Bean
来添加标题。
所以for循环应该是那样的(在MainActivity
)
String prevMonth = null;
String newMonth;
String createdDate;
for (Bean bean : beanArrayList) {
createdDate = bean.getCreatedDate();
// Create header Bean if necessary
if (createdDate != null) {
newMonth = createdDate.split(" ")[1].trim();
if (!newMonth.equalsIgnoreCase(prevMonth)) {
Bean headerBean = new Bean();
headerBean.setViewType(Adapter.VIEW_TYPE_HEADER);
headerBean.setHeaderString(newMonth);
beanArrayListToPopulate.add(headerBean);
prevMonth = newMonth;
}
}
// Update data Bean
bean.setViewType(Adapter.VIEW_TYPE_ITEM);
beanArrayListToPopulate.add(bean);
}
编辑:您也可以尝试这种方法
但我认为我甚至可以更好地使用专用对象来污染您检索的数据(Bean
),并使用仅用于显示它们的信息。
所以你可以做的是创建一个ListItem
对象并在你的适配器中使用它而不是Bean
本身。
在活动中
private ArrayList<Bean> beanArrayList = new ArrayList<>();
private ArrayList<ListItem> mListItems = new ArrayList<>();
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
addDataToBean();
rv = findViewById(R.id.rv);
rv.setLayoutManager(new LinearLayoutManager(this));
String prevMonth = null;
String newMonth;
String createdDate;
for (Bean bean : beanArrayList) {
createdDate = bean.getCreatedDate();
// Create a header if necessary
if (createdDate != null) {
newMonth = createdDate.split(" ")[1].trim();
if (!newMonth.equalsIgnoreCase(prevMonth)) {
ListItem headerItem = new ListItem(newMonth, Adapter.VIEW_TYPE_HEADER);
mListItems.add(headerItem);
prevMonth = newMonth;
}
}
// Create a new item with the Bean data
ListItem item = new ListItem(bean.getFirstName(), Adapter.VIEW_TYPE_ITEM);
mListItems.add(item);
}
rv.setAdapter(new Adapter(mListItems));
}
在适配器中(我只放置了我已更改的内容)
private final ArrayList<ListItem> mItems;
public Adapter(ArrayList<ListItem> items) {
this.mItems = items;
}
@Override
public RecyclerView.ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
View view;
final LayoutInflater inflater = LayoutInflater.from(parent.getContext());
if (viewType == VIEW_TYPE_HEADER) {
view = inflater.inflate(R.layout.header, parent, false);
return new VHHeader(view);
} else if (viewType == VIEW_TYPE_ITEM) {
view = inflater.inflate(R.layout.item, parent, false);
return new VHItem(view);
}
throw new RuntimeException("There is no type that matches the type " + viewType + ". Make sure you are using view types correctly!");
}
@Override
public void onBindViewHolder(RecyclerView.ViewHolder holder, int position) {
ListItem item = mItems.get(position);
// Note: You have the type information directly inside the ViewHolder so you don't need
// to check the ViewHolder's instance type
switch (holder.getItemViewType()) {
case VIEW_TYPE_HEADER:
((VHHeader) holder).tvHeader.setText(item.getData());
break;
case VIEW_TYPE_ITEM:
((VHItem) holder).tvItem.setText(item.getData());
break;
}
}
ListItem
public class ListItem {
private String mData;
private int mType;
public ListItem(String data, int type) {
mData = data;
mType = type;
}
public String getData() {
return mData;
}
public void setData(String data) {
mData = data;
}
public int getType() {
return mType;
}
}
注意:也许代码需要进行一些调整,因为我还没有测试过。
答案 1 :(得分:-1)
你可以这样解决:
<强> row.xml:强>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
>
<!--Header -->
<LinearLayout
android:id="@+id/header"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:visibility="gone">
.................
................
</LinearLayout>
.......................
.......................
</LinearLayout>
在适配器中:
public boolean displayHeader(int position) {
if(position == 0) return true;
//.....
// check month difference to previous position if any then return true;
// else return false;
}
在onBindViewHolder
if(displayHeader(position)){
// set to visiable
}else{
// set visibility to gone
}