我拥有以下CardView
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<androidx.coordinatorlayout.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/coordinatorLayout">
<fragment
android:id="@+id/mapActivity"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".Map.MyMap" />
<androidx.cardview.widget.CardView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:visibility="gone"
android:id="@+id/cardViewData"
android:backgroundTint="@color/colorPrimary"
app:cardCornerRadius="8dp">
...
现在,我以这种方式在Activity中调用此CardView以获得其ID,并将该CardView传递给worker类以在那里处理一些逻辑(我只需要将其设置为visible即可)
private CardView mCardViewData;
在onCreate()内,位于setContentView之后
mCardViewData = findViewById(R.id.cardViewData);
new MapsUtils(this,mCardViewData);
如您所见,我将此卡片视图发送给工作人员类,并按如下方式获取
private CardView mCardViewData;
public MapsUtils(Context context,CardView cardView{
this.mCardViewData = cardView;
this.mContext = context;
}
然后我以类似这样的方法在MapsUtil中使用它
private void initRun(){
mCardViewData.setVisibility(View.VISIBLE);
}
我需要将此cardview绑定到我的worker类,因为我在一个worker类而不是在视图中管理地图的逻辑。
现在,我要得到的是这个
java.lang.NullPointerException:尝试调用虚拟方法 无效的'void androidx.cardview.widget.CardView.setVisibility(int)' 对象参考 在com.utils.MapsUtils.initRun(MapsUtils.java:182) 位于com.utils.MapsUtils.access $ 000(MapsUtils.java:62) 在com.utils.MapsUtils $ 2.onClick(MapsUtils.java:219)
错误点在这里
mCardViewData.setVisibility(View.VISIBLE);
我试图查看我在哪里出错,因为我只是在我的工作人员类中定义了使用CardView所需的全部内容
答案 0 :(得分:0)
好,我发现了问题,问题在于,由于Im使用了多个构造函数,因此初始化调用CardView的方法的构造函数正在初始化它而无需我需要的所有元素,现在我将所有元素绑定到该构造函数及其工作方式