- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图弄清楚字段 itemView
实际上是什么。这是我从文档中获取的代码 fragment 。
public abstract static class ViewHolder {
@NonNull
public final View itemView;
// others removed for simplicity
}
如果我们扩展 ViewHolder
类,因为我们还需要指定一些从 View
派生的类型字段来为每个列表项保存我们自己的小部件,那么明确 itemView
不会保存我们自己的小部件。
itemView
字段引用什么?我很困惑它是否引用了 RecyclerView
还是 list_item_layout.xml
的 Root View (包含我们自己的小部件)。你能澄清一下是哪一个吗?
对于那些想了解ViewHolder
内部细节的人,请参阅以下内容。我提供完整的。
public abstract static class ViewHolder {
@NonNull
public final View itemView;
WeakReference<RecyclerView> mNestedRecyclerView;
int mPosition = -1;
int mOldPosition = -1;
long mItemId = -1L;
int mItemViewType = -1;
int mPreLayoutPosition = -1;
RecyclerView.ViewHolder mShadowedHolder = null;
RecyclerView.ViewHolder mShadowingHolder = null;
static final int FLAG_BOUND = 1;
static final int FLAG_UPDATE = 2;
static final int FLAG_INVALID = 4;
static final int FLAG_REMOVED = 8;
static final int FLAG_NOT_RECYCLABLE = 16;
static final int FLAG_RETURNED_FROM_SCRAP = 32;
static final int FLAG_IGNORE = 128;
static final int FLAG_TMP_DETACHED = 256;
static final int FLAG_ADAPTER_POSITION_UNKNOWN = 512;
static final int FLAG_ADAPTER_FULLUPDATE = 1024;
static final int FLAG_MOVED = 2048;
static final int FLAG_APPEARED_IN_PRE_LAYOUT = 4096;
static final int PENDING_ACCESSIBILITY_STATE_NOT_SET = -1;
static final int FLAG_BOUNCED_FROM_HIDDEN_LIST = 8192;
static final int FLAG_SET_A11Y_ITEM_DELEGATE = 16384;
int mFlags;
private static final List<Object> FULLUPDATE_PAYLOADS = Collections.emptyList();
List<Object> mPayloads = null;
List<Object> mUnmodifiedPayloads = null;
private int mIsRecyclableCount = 0;
RecyclerView.Recycler mScrapContainer = null;
boolean mInChangeScrap = false;
private int mWasImportantForAccessibilityBeforeHidden = 0;
@VisibleForTesting
int mPendingAccessibilityState = -1;
RecyclerView mOwnerRecyclerView;
public ViewHolder(@NonNull View itemView) {
if (itemView == null) {
throw new IllegalArgumentException("itemView may not be null");
} else {
this.itemView = itemView;
}
}
void flagRemovedAndOffsetPosition(int mNewPosition, int offset, boolean applyToPreLayout) {
this.addFlags(8);
this.offsetPosition(offset, applyToPreLayout);
this.mPosition = mNewPosition;
}
void offsetPosition(int offset, boolean applyToPreLayout) {
if (this.mOldPosition == -1) {
this.mOldPosition = this.mPosition;
}
if (this.mPreLayoutPosition == -1) {
this.mPreLayoutPosition = this.mPosition;
}
if (applyToPreLayout) {
this.mPreLayoutPosition += offset;
}
this.mPosition += offset;
if (this.itemView.getLayoutParams() != null) {
((RecyclerView.LayoutParams)this.itemView.getLayoutParams()).mInsetsDirty = true;
}
}
void clearOldPosition() {
this.mOldPosition = -1;
this.mPreLayoutPosition = -1;
}
void saveOldPosition() {
if (this.mOldPosition == -1) {
this.mOldPosition = this.mPosition;
}
}
boolean shouldIgnore() {
return (this.mFlags & 128) != 0;
}
/** @deprecated */
@Deprecated
public final int getPosition() {
return this.mPreLayoutPosition == -1 ? this.mPosition : this.mPreLayoutPosition;
}
public final int getLayoutPosition() {
return this.mPreLayoutPosition == -1 ? this.mPosition : this.mPreLayoutPosition;
}
public final int getAdapterPosition() {
return this.mOwnerRecyclerView == null ? -1 : this.mOwnerRecyclerView.getAdapterPositionFor(this);
}
public final int getOldPosition() {
return this.mOldPosition;
}
public final long getItemId() {
return this.mItemId;
}
public final int getItemViewType() {
return this.mItemViewType;
}
boolean isScrap() {
return this.mScrapContainer != null;
}
void unScrap() {
this.mScrapContainer.unscrapView(this);
}
boolean wasReturnedFromScrap() {
return (this.mFlags & 32) != 0;
}
void clearReturnedFromScrapFlag() {
this.mFlags &= -33;
}
void clearTmpDetachFlag() {
this.mFlags &= -257;
}
void stopIgnoring() {
this.mFlags &= -129;
}
void setScrapContainer(RecyclerView.Recycler recycler, boolean isChangeScrap) {
this.mScrapContainer = recycler;
this.mInChangeScrap = isChangeScrap;
}
boolean isInvalid() {
return (this.mFlags & 4) != 0;
}
boolean needsUpdate() {
return (this.mFlags & 2) != 0;
}
boolean isBound() {
return (this.mFlags & 1) != 0;
}
boolean isRemoved() {
return (this.mFlags & 8) != 0;
}
boolean hasAnyOfTheFlags(int flags) {
return (this.mFlags & flags) != 0;
}
boolean isTmpDetached() {
return (this.mFlags & 256) != 0;
}
boolean isAdapterPositionUnknown() {
return (this.mFlags & 512) != 0 || this.isInvalid();
}
void setFlags(int flags, int mask) {
this.mFlags = this.mFlags & ~mask | flags & mask;
}
void addFlags(int flags) {
this.mFlags |= flags;
}
void addChangePayload(Object payload) {
if (payload == null) {
this.addFlags(1024);
} else if ((this.mFlags & 1024) == 0) {
this.createPayloadsIfNeeded();
this.mPayloads.add(payload);
}
}
private void createPayloadsIfNeeded() {
if (this.mPayloads == null) {
this.mPayloads = new ArrayList();
this.mUnmodifiedPayloads = Collections.unmodifiableList(this.mPayloads);
}
}
void clearPayload() {
if (this.mPayloads != null) {
this.mPayloads.clear();
}
this.mFlags &= -1025;
}
List<Object> getUnmodifiedPayloads() {
if ((this.mFlags & 1024) == 0) {
return this.mPayloads != null && this.mPayloads.size() != 0 ? this.mUnmodifiedPayloads : FULLUPDATE_PAYLOADS;
} else {
return FULLUPDATE_PAYLOADS;
}
}
void resetInternal() {
this.mFlags = 0;
this.mPosition = -1;
this.mOldPosition = -1;
this.mItemId = -1L;
this.mPreLayoutPosition = -1;
this.mIsRecyclableCount = 0;
this.mShadowedHolder = null;
this.mShadowingHolder = null;
this.clearPayload();
this.mWasImportantForAccessibilityBeforeHidden = 0;
this.mPendingAccessibilityState = -1;
RecyclerView.clearNestedRecyclerViewIfNotNested(this);
}
void onEnteredHiddenState(RecyclerView parent) {
if (this.mPendingAccessibilityState != -1) {
this.mWasImportantForAccessibilityBeforeHidden = this.mPendingAccessibilityState;
} else {
this.mWasImportantForAccessibilityBeforeHidden = ViewCompat.getImportantForAccessibility(this.itemView);
}
parent.setChildImportantForAccessibilityInternal(this, 4);
}
void onLeftHiddenState(RecyclerView parent) {
parent.setChildImportantForAccessibilityInternal(this, this.mWasImportantForAccessibilityBeforeHidden);
this.mWasImportantForAccessibilityBeforeHidden = 0;
}
public String toString() {
StringBuilder sb = new StringBuilder("ViewHolder{" + Integer.toHexString(this.hashCode()) + " position=" + this.mPosition + " id=" + this.mItemId + ", oldPos=" + this.mOldPosition + ", pLpos:" + this.mPreLayoutPosition);
if (this.isScrap()) {
sb.append(" scrap ").append(this.mInChangeScrap ? "[changeScrap]" : "[attachedScrap]");
}
if (this.isInvalid()) {
sb.append(" invalid");
}
if (!this.isBound()) {
sb.append(" unbound");
}
if (this.needsUpdate()) {
sb.append(" update");
}
if (this.isRemoved()) {
sb.append(" removed");
}
if (this.shouldIgnore()) {
sb.append(" ignored");
}
if (this.isTmpDetached()) {
sb.append(" tmpDetached");
}
if (!this.isRecyclable()) {
sb.append(" not recyclable(" + this.mIsRecyclableCount + ")");
}
if (this.isAdapterPositionUnknown()) {
sb.append(" undefined adapter position");
}
if (this.itemView.getParent() == null) {
sb.append(" no parent");
}
sb.append("}");
return sb.toString();
}
public final void setIsRecyclable(boolean recyclable) {
this.mIsRecyclableCount = recyclable ? this.mIsRecyclableCount - 1 : this.mIsRecyclableCount + 1;
if (this.mIsRecyclableCount < 0) {
this.mIsRecyclableCount = 0;
Log.e("View", "isRecyclable decremented below 0: unmatched pair of setIsRecyable() calls for " + this);
} else if (!recyclable && this.mIsRecyclableCount == 1) {
this.mFlags |= 16;
} else if (recyclable && this.mIsRecyclableCount == 0) {
this.mFlags &= -17;
}
}
public final boolean isRecyclable() {
return (this.mFlags & 16) == 0 && !ViewCompat.hasTransientState(this.itemView);
}
boolean shouldBeKeptAsChild() {
return (this.mFlags & 16) != 0;
}
boolean doesTransientStatePreventRecycling() {
return (this.mFlags & 16) == 0 && ViewCompat.hasTransientState(this.itemView);
}
boolean isUpdated() {
return (this.mFlags & 2) != 0;
}
}
最佳答案
这完全取决于您的代码,因为当您调用 new SomeViewHolder(itemView)
时,它会引用 itemView
。
例如Android指南-使用RecyclerView创建列表-Add a list adapter的代码中MyViewHolder 创建后有一个 TextView v
的引用。
public MyAdapter.MyViewHolder onCreateViewHolder(ViewGroup parent,
int viewType) {
// create a new view
TextView v = (TextView) LayoutInflater.from(parent.getContext())
.inflate(R.layout.my_text_view, parent, false);
...
MyViewHolder vh = new MyViewHolder(v);
return vh;
}
关于java - ViewHolder中View类型的字段itemView引用了什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54431833/
最近我使用 RecyclerView 并添加了一个自定义标题 View (另一种类型的项目 View )并尝试在数据发生更改时对其进行更新。奇怪的事情发生了。适配器创建一个新的 HeaderViewH
我的项目应该基于用户输入(用户发送文本、拍照或录制视频)创建多个 View ,类似于 WhatsApp 聊天 Activity ,结构几乎相同。适配器应该能够通过使用 getItemViewType(
在 ViewHolder pattern 中将 ViewHolder 设为静态对性能至关重要吗? ? A ViewHolder object stores each of the component
我只是想更好地理解我经常用来优化 ListView 的以下模式 我的阅读只指出静态内部类被视为顶级类的事实。与成员类(非静态)相比,这样的事情有什么好处? @Override public View
我有一个 RecyclerView 和一些 view/card(我们暂时称它为 View ),它们都包含相同的东西,包括我用作分隔栏的 View。 我希望能够在当前 View 上方的 view 中更改
我需要从 View Holder 访问 RecyclerView Adapter 的方法。我找不到任何解决方案。 或者是否可以从 ViewHolder 的 ViewModel 类(我已经在 MVVM
在我的 RecyclerView 适配器中只有一个 ViewHolder 类: public static class PlayerItemViewHolder extends RecyclerVie
我已经采用了一个示例代码来实现 RecyclerView,但试图将其转换为在我的应用程序的子 fragment 中工作。 代码在“创建列表 - 示例”下 Creating Lists and Card
我试图在我的主要 Activity 中而不是在我的自定义适配器中保存复选框的状态。我已检查共享首选项中是否存储了正确的数据,并且可以成功检索信息,但是当我尝试在打开应用程序时标记复选框时, View
我是 Kotlin 的新手,我正在制作一款货币兑换应用。在适配器中,我想将一些项目传递到新 Activity 中。 class AdapterC (val countryList: ArrayLis
我在我的代码中遇到了这个问题,当在 Viewholder 中的一个按钮上进行转换时,这是在 Onclicklistener 中完成的,多个转换发生在不同的行上即,如果我单击第 1 行中的按钮,则按钮向
public class ListViewAdapter extends BaseAdapter { private Context context; private LocationDetails[
我刚刚生成了一个 Master/Detail Flow 项目,我发现了一些奇怪的东西:在 DriverListActivity.java 中,名为 ViewHolder 的子类具有 final 属性。
我正在尝试配置抽屉导航以显示 3 种不同类型的“行”,但我在使用 Holder 时遇到了问题,被告知该消息: FATAL EXCEPTION: main java.lang.ClassCastExce
我理解Viewholder pattern的思路和用法,但我仍然有一个问题: 假设我们在 viewholder 中有一个 TextView,并显示 10 个项目(“item0,item1 ....”)
我有一个包含 3 种不同类型行的 ListView 。我在网上收到 ClassCastException holder = (RowViewHolder) row.getTag(); 我注意到 row
我正在尝试学习 Android 编程。我找不到这个算法的解释: public View getView(int r, View convertView, ViewGroup parent) { V
我正在创建一个 Android 应用程序,其中包含一个带有嵌套 CardView 的 RecyclerView。我需要将所有其他卡片替换为不同的颜色。我正在使用 @Override 来覆盖 onBin
我在 ListView 中使用分段时遇到问题。我需要使用 viewholder 使 listview 滚动平滑,但我不知道如何实现两个 viewholders,因为有两个单独的 View ,一个是部分
我在 ListView 上遇到了 View 持有者的充气问题。实现 Viewholder 后,充气机会出错,因此消息显示错误。 (在图 10 中,消息不是来 self ,而且每当我滚动时,错误的消息都
我是一名优秀的程序员,十分优秀!