我正在學習Google的Android開發教程,並且遇到了一個問題。 在Android的Connecting to the Network Guide它說創建一個擴展AsyncTask的類。如何將對象更改爲擴展AsyncTask的類中的字符串?
private Object doInBackground(Object... args) {..} //it's fine
但是當我嘗試寫,就像它在教程說:
private String doInBackground(String... args) {..} //it gives an error
和錯誤說
所以,當我寫的類,如下所示,它會自動實現的方法:
The method doInBackground(String...) of type MainActivity.DownloadWebpageText must override a superclass method.
那麼如何將對象更改爲字符串而不會出現錯誤?
從我這裏得到了讚賞,並提出了一個簡潔的問題,並遵循您的承諾。 – Sam