Android “Only the original thread that created a view hierarchy can touch its views.”

后端 未结 28 4082
鱼传尺愫
鱼传尺愫 2020-11-21 04:44

I\'ve built a simple music player in Android. The view for each song contains a SeekBar, implemented like this:

public class Song extends Activity implement         


        
28条回答
  •  耶瑟儿~
    2020-11-21 05:31

    In my case, I have EditText in Adaptor, and it's already in the UI thread. However, when this Activity loads, it's crashes with this error.

    My solution is I need to remove out from EditText in XML.

提交回复
热议问题