Android 应用程序强制关闭
我有这个 android 代码。我在 xml 文件中定义了按钮的布局。我想通过 id 获取按钮的文本。但是应用程序强制关闭。出了什么问题?
package com.action ;
import android.app.Activity;
import android.os.Bundle;
import android.widget.Button;
public class ActionActivity extends Activity {
@Override
public void onCreate(Bundle i){
super.onCreate(i);
Button button=(Button) findViewById(R.id.but);
button.setText("Hey!!");
setContentView(R.layout.main);
}
}
谢谢...
i have this android code .I have my layout for button defined in the xml file .i want to set the text for button here by getting it by id .but the app force closes.whats wrong ?
package com.action ;
import android.app.Activity;
import android.os.Bundle;
import android.widget.Button;
public class ActionActivity extends Activity {
@Override
public void onCreate(Bundle i){
super.onCreate(i);
Button button=(Button) findViewById(R.id.but);
button.setText("Hey!!");
setContentView(R.layout.main);
}
}
Thnx...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在使用
findViewById()
之前,您必须使用setContentView(R.layout.main);
。如果您不这样做,
findViewById()
将返回null
(因为当前布局中没有具有该 ID 的视图),并且您将收到NullPointerException尝试在
TextView
上设置文本时。onCreate()
的正确版本应如下所示:You have to use
setContentView(R.layout.main);
before usingfindViewById()
.If you don't do that,
findViewById()
will returnnull
(since no view with that ID is in the current layout) and you will get aNullPointerException
when trying to set the text on theTextView
.The correct version of
onCreate()
should look like this:在创建 Button 实例之前放置 setContentView(R.layout.main) 。
像这样:
Put setContentView(R.layout.main) before creating the instance of Button.
Like This:
您必须在设置 findViewById(R.id.but) 之前放置 setContentView(R.Layout.main) 。因为它会生成 nullpointer 异常。
you must put setContentView(R.Layout.main) before setting findViewById(R.id.but).Because it generates nullpointer Exception.