안드로이드 개발중 다음 문제 : "Only the original thread that created a view hierarchy can touch its views."문제는 이렇게 하면 해결됩니다.
이번에 닌자와좀비들을 중국향으로 개발하면서 IAP모듈을 적용하는 과정에서 다음과 같은 "Only the original thread that created a view hierarchy can touch its views." 에러가 발생되었습니다.이럴 경우에는 다음과 같이 runOnUiThread(new Runnable() 로 묶어주시면 정상적으로 해결됩니다. 중국향이라 중국어는 어떤 내용인지를 정확하게 알수없지만 그래도 함수명과 변수들은 알수 있습니다. private class doIAP extends AsyncTask {@Overrideprotected Void doInBackground(Void... params) {Looper.prepare();/** ????点核心??方法,自?完成全部短代?程* @..
2013. 8. 2. 11:26