我得到了
上
java.lang.NullPointerException
:尝试调用虚拟方法'void android.view.ViewGroup.addView(android.view.View)
'在null
对象引用
这是我的代码:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
b1=(Button)findViewById(R.id.btn);
f1=(FrameLayout)findViewById(R.id.frame_layout);
f1.addView(new myview(getApplicationContext()));
animation=
AnimationUtils.loadAnimation(getApplicationContext(),R.anim.translation);
b1.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
f1.startAnimation(animation);
}
});
错误显示在第f1.addView(new myview(getApplicationContext()));
行中。我已经创建了一个动画程序,我希望将其他类调用到代码中提到的framelayout中,这样当我运行它时,运行时错误显示如下所示。
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2706)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2767)
at android.app.ActivityThread.-wrap12(ActivityThread.java)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1514)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:163)
at android.app.ActivityThread.main(ActivityThread.java:6221)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:904)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:794) Caused by: java.lang.NullPointerException: Attempt to invoke virtual method 'void android.view.ViewGroup.addView(android.view.View)' on a null object reference
at com.cenet.animationclass.MainActivity.onCreate(MainActivity.java:25)
at android.app.Activity.performCreate(Activity.java:6875)
at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1119)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2659
答案 0 :(得分:1)
您需要先为您的活动添加布局:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
b1=(Button)findViewById(R.id.btn);
f1=(FrameLayout)findViewById(R.id.frame_layout);
}
答案 1 :(得分:0)
您没有夸大您的布局,而是在其中查找视图。这在您的代码中是错误的。
当您撰写f1=(FrameLayout)findViewById(R.id.frame_layout);
时,它返回null,因此f1
为null
。现在,当您尝试使用f1.addView
时,您尝试调用null对象的addView方法,以便获得NullPointerException
。
解决方案是首先在setContentView(R.layout.yourLayout);
super
之后添加onCreate
来创建活动布局
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
b1=(Button)findViewById(R.id.btn);
f1=(FrameLayout)findViewById(R.id.frame_layout);
}
警告检查frame_layout
xml layout
答案 2 :(得分:0)
我忘了添加setContent(R.layout。(xmlfile))。这就是运行时错误显示的原因。当你给文件充气时,你必须添加setContent(R.layout。(xmlfile))。