Questions tagged [networkimageview]

99 questions
0
votes
1 answer

volley NullPointerException

i am using volley.jar there's no error on compile time but there's runtime exception. and i add volley.jar and add build path. what is problem? java.lang.NullPointerException at…
HeyYo
  • 13
  • 4
0
votes
1 answer

How to set scaleType for NetworkImageView

I looked into the source code of NetworkImageView at here, it sets image by using setImageBitmap(bitmap). Correct me if I'm wrong, the way to scale a bitmap is using setImageBitmap(Bitmap.createScaledBitmap(...)), and scaleType for NetworkImageView…
lucahuy
  • 630
  • 1
  • 9
  • 18
0
votes
2 answers

Pinch zoom NetworkImageview in android

I am using NetworkImageview for displaying images from url in API call. Also I have to zoom in and out that image.There are classes by using which we can directly implement zoom functionality like TouchImageView but in that we cannot set image…
Bunny
  • 237
  • 2
  • 12
0
votes
1 answer

Volley's NetworkImageView with images on FTP

The scenario is: "Have adapters that work for HTTP, been asked to add FTP support" - sounds reasonable. Is there a way to do it in an equally reasonable timeframe? Or a similar mechanism/customized Volley library to swap Volley for? The FTP is…
kaay
  • 1,053
  • 1
  • 9
  • 29
0
votes
1 answer

Losing images from NetworkImageView after Scrolling list up-down

I have a ListView that grabs news with images associated with it using Volley Json. At first it loads everything but when i scroll the list and come back, it sometimes shows images and sometimes not. After scrolling 2-3 times listview loses every…
Roon13
  • 265
  • 1
  • 21
0
votes
0 answers

If I have a spring mvc rest controller returning byte[], how would I download to my android app using volley?

I need to implement a list view containing a thumbnail, and this thumbnail is loaded using volley networkimageview. How would I implement this if my controller looks like this: @RequestMapping (value="/rest/getphoto/",…
Jorge Cespedes
  • 497
  • 10
  • 19
0
votes
2 answers

File.separator slashes Different direction

I have a Android app talking to a Play framework app, the android app uploades an image to the Play app and also updates the path to the image. I'm using File.separator in both apps. I'm developing the Play app on a Windows machine, but u it will be…
JTK
  • 1,359
  • 2
  • 18
  • 37
0
votes
1 answer

Android Stretching Images in NetworkImageView XML

I'm trying to figure out how to get TV banners from TheTVDB (example http://thetvdb.com/banners/graphical/84947-g6.jpg) to fit the screen width. This gets me the there but I don't want to have the white space from setting the margin:
Wingman1487
  • 102
  • 9
0
votes
2 answers

Android Volley display SVG image

In my Android App I download text-content from my website and store it in my mysql database. Now I want to download and cache images from the same website. With AndroidVolley's
0
votes
1 answer

Can we use https instead of http with networkimageview.setImageUrl?

I am using volley's networkimageview to render images from network in android. I am using networkimageview.setImageUrl(str_url,imageLoader) where 'str_url' is string which contains url and 'imageLoader' is a object of ImageLoader. When it is 'http'…
0
votes
2 answers

How to reload NetworkImageView

I have an app which is displaying fragment with one NetworkImageView widget from android Volley. The image at URL which is loaded in NetworkImageView is changing every 5 secounds so I want to uptade this image by pressing reload button that I have…
0
votes
3 answers

android - rounded NetwrokImageView

I am working with volley library to extract image URLs from server which are square in shape. I want to display it in Round shape. In volley library I am setting image in NetworkImageView like : profilepic.setImageUrl(imgURL, imageLoader);
Akash Singh
  • 738
  • 1
  • 6
  • 14
0
votes
1 answer

How to animate default image of NetworkImageView and scale it and again re-scale it after response

I want to apply animation to default image in networkImageView and scale it to center then again scale it back to fit_XY after image get loaded. Please suggest how can I achieve it. Thanks
BiswajitP
  • 223
  • 4
  • 13
0
votes
2 answers

How to get Bitmap from NetworkImageView

I want Bitmap from networkimageview. here is my code and String url="https://graph.facebook.com/"+u_id+"/picture"; mNetworkImageView = (NetworkImageView) findViewById(R.id.networkImageView); mImageLoader =…
user3606902
  • 759
  • 1
  • 9
  • 23
0
votes
2 answers

How to make a loaded image gradient with Volley Library in developing an android App

I am developing an android App with Volley Library. I would like to load an image in async into listView Adapter with Volley and after loading I would like to make the image gradient. My code is following. It does not work well. The placeholder…
supermonkey
  • 593
  • 9
  • 23