SOLVED
I have a text box inside an XML file called list_entry.xml. The code for the file is as such:
<?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" />
So it's not too complicated. My question is: how do you access the "list_entry_title" textbox? I keep getting crashes (NullPointerException) when I try to use list_entry as a textbox.