Хорошо, я сам это выяснил.Ну, я до сих пор не знаю, что вызвало ошибку, но я сделал много изменений в макете и коде, и вдруг это просто сработало.Я попытался вернуться к коду, который я разместил здесь, но я не могу воспроизвести ошибку.Я публикую свой рабочий код, так что любой, кто сталкивается с этой проблемой, может его использовать.
Администратор также может удалить это сообщение, так как может быть невозможно воспроизвести ошибку.
Вот схема:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:text="Insert IP address"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/AddressBox" />
<TextView
android:text="Insert identifier"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/HostnameBox" />
</LinearLayout>
и AddressDialogPreference.java:
public class AddressDialogPreference extends DialogPreference {
private EditText ipBox;
private EditText hostBox;
public AddressDialogPreference(Context context, AttributeSet attrs) {
super(context, attrs);
setDialogLayoutResource(R.layout.address_dialog);
}
@Override
protected void onBindDialogView(View view) {
ipBox = (EditText) view.findViewById(R.id.AddressBox);
hostBox = (EditText) view.findViewById(R.id.HostnameBox);
SharedPreferences pref = getSharedPreferences();
hostBox.setText(pref.getString(getKey() + "_host","ExampleHostname"));
ipBox.setText(pref.getString(getKey() + "_ip","192.168.1.1"));
super.onBindDialogView(view);
}
@Override
protected void onDialogClosed(boolean positiveResult) {
if(!positiveResult)
return;
SharedPreferences.Editor editor = getEditor();
editor.putString(getKey() + "_host",hostBox.getText().toString());
editor.putString(getKey() + "_ip",ipBox.getText().toString());
editor.commit();
super.onDialogClosed(positiveResult);
}
}