FlipperView 的问题
快速提问,当我尝试将变量分配给 xml 文件中的 Flipperview 的 id 时,我遇到了一个问题,不允许我找到 Flipper 的 id。
mFlipper = (ViewFlipper) findViewById(R.id.your_flipper);包含翻转视图 id 不存在的错误。
由于某种原因,flipper 视图不会采用 xml 文件中分配的 id 并将其放置在 R.java 类中。
有什么想法为什么或不应该在课堂上访问脚蹼的 id 吗?
Quick question, when I try to assign a variable to the id of a flipperview in an xml file, I get an issue that doesn't allow me to find the id of the flipper.
mFlipper = (ViewFlipper) findViewById(R.id.your_flipper); contains an error that the id of the flipper view is not there.
The flipper view won't take the id assigned in the xml file and place it in the R.java class for some reason.
Any ideas why or is the id of a flipper not supposed to be accessible in the class?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的布局 XML 文件在该 ID 下没有
ViewFlipper
,或者您需要清理您的项目。要执行后者,请从命令行或 Project > 中使用ant clean
。从 Eclipse 主菜单清除。Either your layout XML file does not have the
ViewFlipper
under that ID, or you need to clean your project. To do the latter, useant clean
from the command line or Project > Clean from the Eclipse main menu.