从 XML 获取 EditText 字段

发布于 2024-08-25 19:29:54 字数 141 浏览 5 评论 0原文

我的应用程序中有一个活动,当我拨打该线路时,

EditText username = (EditText)findViewById(R.id.usernameText);

应用程序崩溃了,这是为什么?

I have an activity in my app, when i call the line

EditText username = (EditText)findViewById(R.id.usernameText);

the app crashes, why is this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

苍风燃霜 2024-09-01 19:29:54

视图尚未膨胀,或者您失踪了

setContentView(R.layout.layout_file);

The view has not been inflated, or you are missing

setContentView(R.layout.layout_file);
对你的占有欲 2024-09-01 19:29:54

是的,要么 setContentView 尚未在活动的 onCreate 中调用,要么您尝试获取的视图不是 EditText。您遇到的异常是什么?如果它是 ClassCast 那么它不是一个 EditText。

Yeah either setContentView hasn't been called in onCreate of the activity, or else the view you are trying to get isn't an EditText. What is the Exception you are getting? If its ClassCast then its not an EditText.

阳光①夏 2024-09-01 19:29:54

由于没有提供更多信息,需要检查的事项:

  • R.id.usernameText 是布局中的有效标识符
  • 您的布局已设置为内容视图

另外,如果您可以编辑帖子并添加混乱的日志,它会更容易回复。

Things to check as no more information is provided:

  • R.id.usernameText is a valid identifier in your layout
  • Your layout has been set as a content view

Also, if you can edit the post and add the log of what's messing up, it will be more easy to reply.

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