我有代碼,在php頁面上使用延伸AsyncTask
的類獲取字符串。現在我需要根據字符串值更改UI上的按鈕顏色。但我發現v
不能在AsyncTask
類中更改它,因此需要將resultString再次傳遞給主線程。我應該怎麼做? 這裏是我的代碼:如何從AsyncTask類方法向MainActivity獲取字符串?
MainActivityClass
{
//button color changes acc to php page string
}
AsyncTaskClass
{
String result=fetch string data from php using doInBackground method;
//cant change button color here need to pass result to main activity
}
創建一個全局變量! –