Android Activity Context is Null

后端 未结 5 1142
天涯浪人
天涯浪人 2021-01-27 09:49

So I have these Codes here, It runs without crashing. However When I pass \"this\" into the gridadapter the mContext is null. I tried to pass getApplicationContext() through but

5条回答
  •  闹比i
    闹比i (楼主)
    2021-01-27 09:58

    private Context context;
       private ProgressDialog progressDialog;
    
       @Override
       protected void onCreate(Bundle savedInstanceState) {
           super.onCreate(savedInstanceState);
           setContentView(R.layout.activity_vehicle_details);
    
        context = this;
     }
    

提交回复
热议问题