解决
我在一个名为list_entry.xml的XML文件中有一个文本框。该文件的代码如下:
<?xml version="1.0" encoding="utf-8"?>
<TextView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/list_entry_title"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:paddingTop="1dip"
android:paddingBottom="1dip"
android:paddingLeft="5dip"
style="android:attr/listViewWhiteStyle" />
所以它并不太复杂。我的问题是:你如何访问“list_entry_title”文本框?当我尝试将list_entry用作文本框时,我不断遇到崩溃(NullPointerException)。
答案 0 :(得分:0)
原来我犯了一个愚蠢的错误;在尝试访问TextBox时,我使用R.layout而不是R.id。感谢所有评论的人!