Android "뷰 계층 구조를 만든 원본 스레드만 뷰를 터치할 수 있습니다." 저는 안드로이드에서 간단한 음악 플레이어를 만들었습니다.각 노래의 보기에는 다음과 같이 구현된 SeekBar가 포함되어 있습니다. public class Song extends Activity implements OnClickListener,Runnable { private SeekBar progress; private MediaPlayer mp; // ... private ServiceConnection onService = new ServiceConnection() { public void onServiceConnected(ComponentName className, IBinder rawBinder) { appServic..