Video From Url In Videoview
I want to play a video from a url in a VideoView: @Override protected void onCreate(Bundle savedInstanceState) { // TODO Auto-generated method stub super.onCreate(savedInst
Solution 1:
I don't see where you are defining a layout... I think you forgot:
setContentView(R.layout.main);
Which would cause any findViewById() to return null.
Post a Comment for "Video From Url In Videoview"