我正在使用MaterialDrawer(以及FastAdapter)在我的应用程序中创建左右抽屉,目前我在右抽屉中使用了紧凑型帐户标头(请参见下面的屏幕快照中带有用户照片的绿色区域)。
但是我在那里需要几个文本字段,所以我想切换-并使用自定义的PrimaryDrawerItem(请参见下面的屏幕截图中的洋红色区域)。
我研究了https://github.com/mikepenz/MaterialDrawer/blob/develop/FAQ/howto_modify_add_custom_draweritems.md中列出的指南,并尝试在此处使用ImageView和两个TextViews创建这样的项目:
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
到底是什么?
答案 0 :(得分:1)
@Alexander Farber作为抽屉,无非就是带有元素的RecyclerView(因此,这些项基于与您为FastAdapter创建的项相同的方法(理论上,可以通过另外实现IDrawerItem接口来使用fastAdapter项,并且抽屉物品只是在任何列表中))
因此,这意味着每当您调整元素的字段时,都需要通知适配器有关该项目的更新。
MaterialDrawer
具有便捷的功能,例如:https://github.com/mikepenz/MaterialDrawer/blob/develop/library/src/main/java/com/mikepenz/materialdrawer/Drawer.java#L654
drawerItem.doMyUpdate(); // modify the item
Drawer.updateItem(drawerItem); // notify the drawer about the update
但是您也可以转到适配器的根目录。获取适配器:https://github.com/mikepenz/MaterialDrawer/blob/develop/library/src/main/java/com/mikepenz/materialdrawer/Drawer.java#L654,然后从任何适配器更新您所知道的项目。
此外,非常重要的一点是,您可能需要提供payload
来优化刷新。 (使用自定义有效负载,然后通过更新视图对特定的有效负载做出反应)