在 Android 开发者网站上的 Notepad v1 示例 1 中报告拼写错误/不正确的代码
在Android开发者网站上,有记事本教程,我发现了一个第一个例子中的错误。浏览该网站后,我找不到向任何人报告该情况的方法。
错误出现在示例 1 的“步骤 4”中,定义 notepad_list 布局文件时。本教程要求您输入 ListView 和 TextView id 作为“@android:id/id_name”。但是,完成其余步骤并运行它(编译正常)后,按“菜单”按钮添加注释会导致应用程序关闭。将此文件与提供的解决方案(工作正常)进行比较,我发现该条目实际上应该写为“@id/android:id_name”。
我想向教程的创建者或管理员报告此拼写错误,以便可以编辑演练,但我在网站上找不到任何联系方式或方式。
有谁知道我该如何为未来的新手开发人员解决这个问题?
On the Android developers website, there is a Notepad tutorial and I found a mistake in the first example. After browsing through the site, I cannot find a way to report it to anyone.
The mistake is in "Step 4" of Example 1, when defining the notepad_list layout file. The tutorial has you type in the ListView and TextView id's as "@android:id/id_name". However, upon completing the rest of the steps and running this (it compiles fine), pressing the Menu button to add a note causes the app to close. Comparing this file with the solution provided (which works fine), I see that the entry should in fact be written as "@id/android:id_name".
I would like to report this typo to the creator or manager of the tutorial so that the walkthrough can be edited but I can't find any sort of contact or way to do so on the website.
Does anyone know how I can go about getting this fixed for future beginning developers?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
android:id="@android:id/list" 是正确的。
当@android:id是系统指定的标签时,使用@android:id代替@id。例如,ListActivity 要求 @android:id/list 出现在布局中
android:id="@android:id/list" is correct.
the @android:id is used in place of @id when it is system specified tag. For instance, a ListActivity requires @android:id/list to be present in the layout
请按照以下说明操作: http://source.android.com/source/report-bugs.html
Follow these instructions: http://source.android.com/source/report-bugs.html