Issue
I am currently trying to use the android library android fu to help me with my first proper app.
I am trying to makea test project using the droid fu library but when ever i go to test the app it force closes.
I have used an example of the asynctask and when i test the app it loads and does what its meant to but when i replace it with the betterasynctask the app force closes.
You can download the source of the test app from http://androidapp.dino-digital.com/DroidFuTest.zip
Solution
Even though hwrdprkns was correct as to disabling the dialog will make the app work to be able to get the progress dialog to work i add to the following to get the dialog to work.
Call both lines to set the dialog content
super.setProgressDialogTitleId(R.string.dialog_title);
super.setProgressDialogMsgId(R.string.dialog_message);
OR
define "droidfu_progress_dialog_title"
and droidfu_progress_dialog_message
in your strings.xml
Answered By - adamias
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.