0
android annotation에서 View.PostDelayed하는 방법은 @Background(delay = 1000)
과 같습니까?안드로이드에서 View.PostDelayed 달성하기 Annotations
android annotation에서 View.PostDelayed하는 방법은 @Background(delay = 1000)
과 같습니까?안드로이드에서 View.PostDelayed 달성하기 Annotations
@UiThread(delay = 1000)
설명서를 읽어야합니다. @Background
은 백그라운드 스레드에서 메소드를 실행하지만 @UiThread
은 UI (기본) 스레드에서 메소드를 실행합니다.
https://github.com/excilys/androidannotations/wiki/WorkingWithThreads#uithread
?? 도움이 필요하십니까? 고맙다! –