Error:(124, 9) Error: Method Does Not Override Or Implement A Method From A Supertype
I'm trying to develop a complete android login registration system with PHP and MySQL from Android. If user forget his password, a new password will be send to his e-mail. I follo
Solution 1:
You haven't provided any types for AsyncTask when declaring NetCheck, but are trying to override doInBackground(String... args) , change it to:
privateclass NetCheck extends AsyncTask<String, Integer, Boolean>
likewise change the declaration of ProcessRegister to:
privateclassProcessRegisterextendsAsyncTask<String, Integer, JSONObject>
Check the docs here for more info
Post a Comment for "Error:(124, 9) Error: Method Does Not Override Or Implement A Method From A Supertype"