findViewById 不适用于特定视图
findViewById not working for specific view
我从 XML 加载了一个 activity,视图的 ID 和往常一样:
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="80dp"
android:layout_height="110dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<FrameLayout
android:layout_width="70dp"
android:layout_height="70dp"
android:layout_gravity="center_horizontal"
android:background="@drawable/white_circle">
<com.myapp.views.CircleImageView
android:id="@+id/imageView"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</FrameLayout>
<FrameLayout
android:layout_width="wrap_content"
android:layout_height="16dp"
android:layout_gravity="center_horizontal"
android:layout_marginTop="-12dp"
android:background="@drawable/price_background">
<TextView
android:id="@+id/priceView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginLeft="4dp"
android:layout_marginRight="4dp"
android:text="0.1 BTC"
android:textAllCaps="true"
android:textColor="@color/white"
android:textSize="10sp"
android:textStyle="bold" />
</FrameLayout>
<TextView
android:id="@+id/nameView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="2dp"
android:gravity="center_horizontal"
android:lineSpacingMultiplier="0.8"
android:lines="2"
android:text="Bacon Cheeseburger"
android:textSize="10sp" />
</LinearLayout>
</FrameLayout>
我正在尝试在代码中引用三个视图:
public ItemViewHolder(View itemView) {
super(itemView);
nameView = itemView.findViewById(R.id.nameView);
priceView = itemView.findViewById(R.id.priceView);
imageView = itemView.findViewById(R.id.imageView);
}
nameView
和 priceView
被正确引用,但是,imageView
没有被引用并且是 null
:
为什么我不能引用 imageView
?
(如果我遍历视图树,它是。)
更新: 我做了清理项目和无效 Caches/Restart,问题仍然存在。
更新 2: ItemViewHolder
来自 RecyclerView.ViewHolder
。 CircleImageView
派生自 FrameLayout
( 而不是 ImageView
)。这个 XML 是我的视图持有者的布局。
更新 3: 这是我的圆形视图的构造函数:
public class CircleImageView extends FrameLayout {
public CircleImageView(Context context) {
super(context);
init();
}
public CircleImageView(Context context, AttributeSet attrs) {
super(context);
init();
}
public CircleImageView(@NonNull Context context, @Nullable AttributeSet attrs, @AttrRes int defStyleAttr) {
super(context, attrs, defStyleAttr);
init();
}
...
}
此外,正如 Subzero 指出的那样,我检查了视图的 ID 属性(mID
字段),它是 -1
,这似乎是问题。我不知道为什么它是 -1。
我认为问题在于,您在 layout.xml 中的 imageView 是自定义视图 (com.myapp.views.CircleImageView),而不是常规 android ImageView。
如果 class extends imageview
尝试投射到 ImageView
ImageView iv = (ImageView) itemView.findViewById(R.id.imageView));
或将其用作您的自定义视图
CircleImageView iv = (CircleImageView) itemView.findViewById(R.id.imageView));
将双参数构造函数中的 super
调用更改为:
super(context, attrs);
当 View
从布局中膨胀时,XML 属性及其值通过 AttributeSet
传递到双参数构造函数。如果您不将其传递给超类,则您在 XML 中指定的 id
永远不会在 View
上设置,因此 findViewById()
将找不到它使用给定的 ID。
我喜欢使用这个如下,希望对你有帮助。
public class CircleImageView extends FrameLayout {
public CircleImageView(Context context) {
this(context,null);
}
public CircleImageView(Context context, AttributeSet attrs) {
this(context.attrs,0);
}
public CircleImageView(@NonNull Context context, @Nullable AttributeSet attrs, @AttrRes int defStyleAttr) {
super(context, attrs, defStyleAttr);
init();
}
...
}
我从 XML 加载了一个 activity,视图的 ID 和往常一样:
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="80dp"
android:layout_height="110dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<FrameLayout
android:layout_width="70dp"
android:layout_height="70dp"
android:layout_gravity="center_horizontal"
android:background="@drawable/white_circle">
<com.myapp.views.CircleImageView
android:id="@+id/imageView"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</FrameLayout>
<FrameLayout
android:layout_width="wrap_content"
android:layout_height="16dp"
android:layout_gravity="center_horizontal"
android:layout_marginTop="-12dp"
android:background="@drawable/price_background">
<TextView
android:id="@+id/priceView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginLeft="4dp"
android:layout_marginRight="4dp"
android:text="0.1 BTC"
android:textAllCaps="true"
android:textColor="@color/white"
android:textSize="10sp"
android:textStyle="bold" />
</FrameLayout>
<TextView
android:id="@+id/nameView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="2dp"
android:gravity="center_horizontal"
android:lineSpacingMultiplier="0.8"
android:lines="2"
android:text="Bacon Cheeseburger"
android:textSize="10sp" />
</LinearLayout>
</FrameLayout>
我正在尝试在代码中引用三个视图:
public ItemViewHolder(View itemView) {
super(itemView);
nameView = itemView.findViewById(R.id.nameView);
priceView = itemView.findViewById(R.id.priceView);
imageView = itemView.findViewById(R.id.imageView);
}
nameView
和 priceView
被正确引用,但是,imageView
没有被引用并且是 null
:
为什么我不能引用 imageView
?
(如果我遍历视图树,它是。)
更新: 我做了清理项目和无效 Caches/Restart,问题仍然存在。
更新 2: ItemViewHolder
来自 RecyclerView.ViewHolder
。 CircleImageView
派生自 FrameLayout
( 而不是 ImageView
)。这个 XML 是我的视图持有者的布局。
更新 3: 这是我的圆形视图的构造函数:
public class CircleImageView extends FrameLayout {
public CircleImageView(Context context) {
super(context);
init();
}
public CircleImageView(Context context, AttributeSet attrs) {
super(context);
init();
}
public CircleImageView(@NonNull Context context, @Nullable AttributeSet attrs, @AttrRes int defStyleAttr) {
super(context, attrs, defStyleAttr);
init();
}
...
}
此外,正如 Subzero 指出的那样,我检查了视图的 ID 属性(mID
字段),它是 -1
,这似乎是问题。我不知道为什么它是 -1。
我认为问题在于,您在 layout.xml 中的 imageView 是自定义视图 (com.myapp.views.CircleImageView),而不是常规 android ImageView。 如果 class extends imageview
尝试投射到 ImageViewImageView iv = (ImageView) itemView.findViewById(R.id.imageView));
或将其用作您的自定义视图
CircleImageView iv = (CircleImageView) itemView.findViewById(R.id.imageView));
将双参数构造函数中的 super
调用更改为:
super(context, attrs);
当 View
从布局中膨胀时,XML 属性及其值通过 AttributeSet
传递到双参数构造函数。如果您不将其传递给超类,则您在 XML 中指定的 id
永远不会在 View
上设置,因此 findViewById()
将找不到它使用给定的 ID。
我喜欢使用这个如下,希望对你有帮助。
public class CircleImageView extends FrameLayout {
public CircleImageView(Context context) {
this(context,null);
}
public CircleImageView(Context context, AttributeSet attrs) {
this(context.attrs,0);
}
public CircleImageView(@NonNull Context context, @Nullable AttributeSet attrs, @AttrRes int defStyleAttr) {
super(context, attrs, defStyleAttr);
init();
}
...
}