findpreference(R.id.myprefid) always returns null in my holoeverywhere preferenceActivity.I was unable to find an example for findpreference. Here is my preference xml:
<EditTextPreference
holo:id="@+id/examiner_preference"
android:inputType="textCapWords|textPersonName"
holo:dialogTitle="@string/examiner_dialogTitle"
holo:key="examiner_preference"
holo:summary="@string/examiner_summary"
holo:title="@string/examiner_name" />
<EditTextPreference
holo:id="@+id/email"
android:inputType="textEmailAddress"
holo:dialogTitle="@string/prefs__title"
holo:key="acra.user.email"
holo:summary="@string/pref_a_summary"
holo:title="@string/pref_aemail" />
I did everything suggested in this issue but still no success.
Please either suggest a solution or reference an example app which uses holoeverywhere's findpreference(). (I couldn't find one in demo app)