我在 MainActivity 中调用的另一个 java 文件中有一个类。我需要在外部类中增加一些布局。我遇到的问题是指定上下文,因为当我尝试扩展布局时,我得到一个空指针异常。该类没有它自己的onCreate()
方法,所以我需要从我的 MainActivity 传递上下文?不知道该怎么做。这导致我NullPointerException
:
Context context = getApplicationContext();
LayoutInflater inflater = (LayoutInflater)context.getApplicationContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);;
NullPointerException
在Context
上下文中:
public class CameraListener extends Activity implements OnCameraChangeListener {
private static final int SCALE_HEIGHT = 50;
GoogleMap mMap;
GoogleC3iActivity mParent;
Context context = getApplicationContext();