Posts by Gustavo • 67 points
5 posts
-
1
votes0
answers1773
viewsQ: Problem loading an android app news feed?
Well, I’m having trouble with an app that shows a news listing, on some smartphones where the list was supposed to appear with the news the screen is blank, I searched on the internet and found that…
-
1
votes1
answer88
viewsQ: Create id for a new Listview?
I have the following problem, I already have a listview and I want to create another, but is giving the following error: <ListView android:id="@android:id/listView" <----- ***Error: No…
-
1
votes0
answers275
viewsQ: How do I view downloaded images through the URL in a Listview?
The code I have so far is as follows:: import java.io.BufferedInputStream; import java.io.IOException; import java.io.InputStream; import java.net.URL; import java.net.URLConnection; import…
-
1
votes2
answers1486
viewsQ: Convert a bitmap image to a URL and set in Imageview
Well I would like to know how to set a URL in an Imageview variable, I do not know if I was clear? private final DisplayImageOptions options; public NoticiasAdapter(Activity activity, List objects)…
-
2
votes1
answer169
viewsQ: List View with Textview and Imageview
I’m trying to make a ListView with TextView and ImageView(obtained through a URL), when only with TextView was appearing normal, but when I added the code to show the images, the screen turns all…