I get the json response perfectly, but I want to display the video that I receive from json in my video presentation, but they donβt show it ... my answer is below .. and my fragment code, as well as the design of the user interface design .. can any help?

json
{ "user_login_id":"2650", "user_total_video":"0", "max_upload_video":"1", "video_id":"485", "video_status":"Approved", "video":"http:\/\/lakinos.com\/uploads\/user\/1249\/small\/Denger.3gp" }
Java
public class VideoList extends Activity{ private String User_IDs; private String total; private String max; private String vidid; private String vidsta; private String vd; private VideoView vides; private ViewPager viewPager; private ImageAdapter adapter; private Button btnvideoupload; private Button btndelete; JSONParser jsonParser = new JSONParser(); private static final String DELT_SETPRO_URL = ""; private static final String DELT_SETPRO_STATUS = "status"; private static final String DELT_SETPRO_MSG = "msg"; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.fullvideo); User_IDs=this.getIntent().getStringExtra("id"); System.out.println("photo upload view user id"+User_IDs); total=this.getIntent().getStringExtra("totalvideos"); System.out.println("photo total "+total); max=this.getIntent().getStringExtra("maxvideos"); System.out.println("photo maximum "+max); vidid=this.getIntent().getStringExtra("videoid"); System.out.println("photo maximum "+vidid); vidsta=this.getIntent().getStringExtra("vidstatus"); System.out.println("photo maximum "+vidsta); vd=this.getIntent().getStringExtra("vids"); System.out.println("photo maximum "+vd); btnvideoupload=(Button)findViewById(R.id.goforuploadvid); btnvideoupload.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { Intent intent=new Intent(getApplicationContext(),VideoUpload.class); intent.putExtra("id", User_IDs); startActivity(intent); } }); btndelete=(Button)findViewById(R.id.deletevid); btndelete.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { new AttemptLogin().execute(); } }); }
source share