我正在使用 MaterialDrawer(以及 FastAdapter)在我的应用程序中创建左右抽屉,目前我在右侧抽屉中使用紧凑样式的帐户标题(请参阅下面屏幕截图中带有用户照片的绿色区域)。
但是我需要更多的文本字段,所以我想切换 - 并使用自定义 PrimaryDrawerItem(请参见下面屏幕截图中的洋红色区域)。
我研究了https://github.com/mikepenz/MaterialDrawer/blob/develop/FAQ/howto_modify_add_custom_draweritems.md中列出的指南,并尝试在这里使用 ImageView 和两个 TextView 创建这样的项目:
public class RightDrawerItem extends AbstractDrawerItem<RightDrawerItem, RightDrawerItem.ViewHolder> {
public String photo;
public String given;
public String score;
@Override
public int getType() {
return R.id.right_drawer_item_id;
}
@Override
@LayoutRes
public int getLayoutRes() {
return R.layout.right_drawer_item;
}
@Override
public void bindView(ViewHolder vh, List<Object> payloads) {
super.bindView(vh, payloads);
Context ctx = vh.itemView.getContext();
if (ctx.getApplicationContext() instanceof SlovaApplication) {
SlovaApplication app = (SlovaApplication) ctx.getApplicationContext();
if (URLUtil.isHttpsUrl(photo)) {
app.getPicasso()
.load(photo)
.placeholder(R.drawable.account_gray)
.into(vh.mPhoto);
}
}
vh.mGiven.setText(given);
vh.mScore.setText(score);
//call the onPostBindView method to trigger post bind view actions (like the listener to modify the item if required)
onPostBindView(this, vh.itemView);
}
@Override
public ViewHolder getViewHolder(View v) {
return new ViewHolder(v);
}
public void setPhoto(String photo) {
this.photo = photo;
}
public void setGiven(String given) {
this.given = given;
}
public void setScore(String score) {
this.score = score;
}
public static class ViewHolder extends RecyclerView.ViewHolder {
private ImageView mPhoto;
private TextView mGiven;
private TextView mScore;
private ViewHolder(View view) {
super(view);
view.setBackgroundColor(Color.MAGENTA);
mPhoto = view.findViewById(R.id.photo);
mGiven = view.findViewById(R.id.given);
mScore = view.findViewById(R.id.score);
}
}
}
我的问题是当我打电话时
mRightDrawerItem.setPhoto(...);
mRightDrawerItem.setGiven(...);
mRightDrawerItem.setScore(...);
然后我的自定义 PrimaryDrawerItem 的视图没有更新,正如您在屏幕截图的洋红色区域中看到的那样(请原谅非英文文本):
另外,我不太确定到底是什么vh.itemView
?