Android 应用程序强制关闭

发布于 2024-12-05 16:43:35 字数 503 浏览 1 评论 0原文

我有这个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

似最初 2024-12-12 16:43:35

在使用 findViewById() 之前,您必须使用 setContentView(R.layout.main);

如果您不这样做,findViewById() 将返回 null(因为当前布局中没有具有该 ID 的视图),并且您将收到 NullPointerException尝试在 TextView 上设置文本时。

onCreate() 的正确版本应如下所示:

public void onCreate(Bundle i) {
    super.onCreate(i);

    setContentView(R.layout.main);
    Button button = (Button) findViewById(R.id.but);
    button.setText("Hey!!");
}

You have to use setContentView(R.layout.main); before using findViewById().

If you don't do that, findViewById() will return null (since no view with that ID is in the current layout) and you will get a NullPointerException when trying to set the text on the TextView.

The correct version of onCreate() should look like this:

public void onCreate(Bundle i) {
    super.onCreate(i);

    setContentView(R.layout.main);
    Button button = (Button) findViewById(R.id.but);
    button.setText("Hey!!");
}
依 靠 2024-12-12 16:43:35

在创建 Button 实例之前放置 setContentView(R.layout.main) 。
像这样:

    setContentView(R.layout.main);

    Button button=(Button) findViewById(R.id.but);
    button.setText("Hey!!");

Put setContentView(R.layout.main) before creating the instance of Button.
Like This:

    setContentView(R.layout.main);

    Button button=(Button) findViewById(R.id.but);
    button.setText("Hey!!");
愿得七秒忆 2024-12-12 16:43:35

您必须在设置 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文