Cannot play RTSP video in VideoView in Samsung Galaxy S2
问题 I'm trying to play a live RTSP video (from rtsp://media2.tripsmarter.com/LiveTV/BTV/ ) using VideoView , and here's my code: public class ViewTheVideo extends Activity { VideoView vv; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); vv = (VideoView) this.findViewById(R.id.VideoView); Uri videoUri = Uri.parse("rtsp://media2.tripsmarter.com/LiveTV/BTV/"); vv.setMediaController(new MediaController(this)); vv