I wanna make a second button near the "Cancel" button in my ListPreference and implement my onClickListener on it, how should I do it? Thanks.
my preferences.xml:
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" >
<ListPreference
android:dialogTitle="@string/LangDialogTitle"
android:entries="@array/entries_lang"
android:entryValues="@array/entryvalues_lang"
android:key="lang"
android:summary="@string/LangSummary"
android:title="@string/LangTitle" />
</PreferenceScreen>