Question

I'm trying to make a custom setting in my application's PreferenceActivity that brings up a Dialog which will ultimately have the following

  1. An EditText to specify a server
  2. A Button for testing the server connection
  3. A response Icon specifying if the server has been reached

I am making some progress creating a custom Dialog, but I've also encountered the DialogPreference class which seems to be useful for this type of feature.

I'm wondering if there is any reason for me to start trying to use DialogPreference or if it is reasonable for me to continue toying around with a simple custom Dialog.

Will I run into any problems with either?

Was it helpful?

Solution

I would suggest using the DialogPreference. DialogPreference is provided to you for this exact situation. And you should not run into any problems.

However, if you are already almost done... then continue with what you have.

Also, if you are wanting your DialogPreference to launch other dialogs, like confirmations or whatever, you should use Dialog.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top