Hi In my application i have one login form based on username display all the data in edittext same like that in database I have all the details with image.All the data display correctly and image not displaying for that I used this url
http://domainname/xxxxxxx/folder/a.jpg
But above image is displaying correctly But I want based on username I want to display which image is in database I want to display that image
can any one help me
String picture1= json.getString("picture");
studentpic1=(ImageView) findViewById(R.id.imageView1);
String image_url = "http://xxxxx/xxx/xxxx/".concat(picture1);
ImageLoader imgLoader = new ImageLoader(getApplicationContext());
imgLoader.DisplayImage(image_url, 0, studentpic1);