0
votes
3answers
33 views

How to convert an int[] into an List<Integer> in Android?

It seems like a simple matter; I have an int[] that I prepopulate at initialization, then I want to convert it to a List<Integer>, but this doesn't work: int[] ACTIVITIES = {0,1,2}; ...
0
votes
0answers
23 views

error inflating class android.widget.listView slidingMenu

My app force closes and gives this error Im using the SlidingMenuLibrary to have a slide out menu from the left side and im thinking this is where my problem is but i dont know how to solve it. ...
0
votes
0answers
27 views

How to save a List<HashMap<String,String>> to an SQLite db

I want to save a List<HashMap<String,String>> to my small db. How to achieve it.. I want to use this list in many activities of my app. Is there any other possible way to access this ...
0
votes
1answer
36 views

How to send a List<HashMap<String,String>> list to another activity

I was trying to send List> list to another activity. I tried many ways but couldn't. Please help!
0
votes
4answers
50 views

Open an activity inside an alert dialog box in android

Can I trigger an activity inside an alert box? Here is what I am trying out: I have list of items in DB. I have main.class - which has a button - on click on the button it gets to list.class (This ...
-4
votes
2answers
35 views

Search through android app [closed]

I'm trying to create android app that contains lists where I want to search in it using the search bar and also search in the app features. In other words, I'm creating app that shows IT courses in a ...
-1
votes
3answers
61 views

How to get a list of running services in android?

How can in get a list of running services in android code and how can i send it via sms using smsmanager.
-3
votes
0answers
69 views

PARSING JSON Object from url to list view in Android [closed]

I have referred this site and tried many variations to parse the json data from this url: http://redsox.tcs.auckland.ac.nz/734A/CSService.svc/courses into a listview. Please tell me how to do it ...
0
votes
3answers
57 views

Set Lists elements in proper / effective way in Java

I am programming in Java some Android project. I want to set 0 into all elements from List int j = 0; for(@SuppressWarnings("unused") Integer integ : listItemsNum) { listItemsNum.set(j, 0); ...
1
vote
1answer
18 views

Creating a checklist reccomendations

I am trying to create a checklist from scratch in my android app. I want the user to be able to create custom "goals" in this checklist and check them off when they complete these goals. I was ...
-1
votes
2answers
53 views

Add a button at the end of custom list

I'm working on an Android application. I have created a custom list as follows: private List<Model> getModel() { List<Model> list = new ArrayList<Model>(); //Model is another ...
3
votes
2answers
31 views

Android: How to sort FTPFile[] filelist by date?

I like to sort a FTPFile list by date and don't know how I can do this. I have the following code: FTPFile[] files = ftpClient.listFiles(); for (FTPFile file : files) { ...
0
votes
0answers
36 views

Preferences to change the background animation

I am trying to make Settings in my app, specifically a ListPreference to be able to change the background animation of the app, but I can't do it, nothing changes if you choose option 1 or option 2... ...
1
vote
2answers
98 views

display the image url in listview

I'm new to android domain.. I'm working with small app.. What i need is ?? I have videos urls and image urls in a array list,which retrive from database as json object and stored in separate ...
0
votes
1answer
22 views

Android: how to do a checkbox list from installed user apps

i'm very new to android development... i'm still on leaning phase... and it seems like a very big forest for me... there's is something specific i want to make... i want to create an app that will ...
1
vote
0answers
48 views

Best way to implement horizontal scrolling list type view in Android

I need to create a horizontal list type view which shows a number of views are simply an image and a small piece of text. The list needs be flickable with inertial scrolling, have recycling of views ...
0
votes
1answer
29 views

list item row color issue android

I have implemented custom adapter for list items. I have two requirements 1) list items should have alternate colors. To implement that, i have below code private final int[] bgColors = new int[] ...
0
votes
2answers
38 views

Android Update a List with a Thread

im creating a program that need to update a list every x seconds, so i created a ListActivity and a Thread. The ListActivity call the thread, and it sends the information, but the list doesnt update ...
2
votes
1answer
197 views

JSONArray in a ListView with Android

urlHi i've this code that works receiving data from a php page and i want to put that data in a listview. I receive that data and i've seen that with a system.out.println but i have white rows in the ...
0
votes
1answer
78 views

custom adapter filter get wrong position id

So I have a custom adapter, which I tries to implement a filter search where user key search item from edittext. And the filtering works just fine. However, in my list, I do also implement checkbox. ...
0
votes
1answer
54 views

Trying to open a Dialog Menu with an Options Menu Item

I am trying to open an Alert Dialog with a list in it for the user to select some options, but the dialog will be opened from an options menu item. I have included the code for the Options Item and ...
0
votes
0answers
60 views

Using limit () and offset () in QueryBuilder (ANDROID , ORMLITE)

@SuppressWarnings("deprecation") public List<Picture> returnLimitedList(int offset, int end) { List<Picture> pictureList = new ArrayList<Picture>(); int startRow = offset; ...
0
votes
2answers
43 views

Buttons setText from shuffled list item positions display wrong results

I have a String array with numbers "25", "50", "75", "100" and I'm using the method below to shuffle the positions of list' s items. public List<String> listNums() { List<String> ...
0
votes
2answers
43 views

erros with making a list in Android?

i am trying to do something simple, make a list to store some integer values public List<int> myList = new List<int>(); this is my attempt at makeing the list and this is my error ...
1
vote
0answers
36 views

Android Filtering a List of Objects

My question is similar to: java Best way to Filter list of object I have a list of objects say Sales. I want only the Sales objects whose Product matches the ones in another list, say ...
0
votes
3answers
51 views

android custom list not displaying

I'm having a problem in displaying the custom list i checked the array and it was not null but still the list is not displaying: Adaptor class: public class ReportAdapter extends BaseAdapter{ ...
0
votes
2answers
44 views

Preferences to change the background animation of an app

I am trying to make Settings in the app, specificly a ListPreference to be able to change the background animation of the app, but I can't do it, nothing changes if you choose option 1 or option 2... ...
0
votes
0answers
38 views

Initiating List<String> inside of AsyncTask in Android

I'm trying to initiate List<String> inside of AsyncTask and the whole task is no longer called, no errors though. Just to be clear, the only reason I am after the List is that it gives me an ...
0
votes
1answer
41 views

Android- Returning data from list activity

My application has a main activity which can spawn one of four list activities, the goal is to have the user select items from the lists one after another and upon submit from the main activity push ...
0
votes
1answer
86 views

Android: Sorting JSON objects by highest value

I want to sort my array (parsed from JSON) by highest value. I want to make a topscorelist. My JSON file: [ { "naam": "Peter", "wedstrijden": "10", "doelpunten": "4" }, { ...
0
votes
2answers
62 views

After selected listitem shows details of them on another activity through json?

I have an activity in which i show the list items which come through json. when i click on that item i want to go next activity and show the details related to that particular item name which i ...
0
votes
0answers
21 views

How to change custom Itens from ListFragment ?

How can I set a click listener to a image inside a row in a ListFragment ? I want to change the image without selecting the row, if I use onListItemClick it selects the hole row. Thanks in Advance.
0
votes
1answer
88 views

My Android ListFragment isn't displaying the list

The following ListFragment doesn't display anything other than a blank screen. I know the data are present. I'm not getting errors, just a blank (white) screen. I'm sure it's something silly. I'm ...
0
votes
0answers
20 views

Collection Widget on Android 1.6?

I want to create collection widget (developer.android.com) for android 1.6 (API level 4). I already created an app widget with just one single listView element on it's layout but I just get the ...
1
vote
2answers
35 views

See the list of the files in an external storage

I wanted to see all the files I have in my external storage, I have this library that display the text to the user, but when I'm using it to show the sub files, it says something like : (Ljava.File;@ ...
0
votes
6answers
46 views

List of items with custom views/layouts

I need a way to create a vertically scroll-able list. The list should then contain a bunch of rows, where each row should have an image button, an image , three TextViews and two images. Like this: ...
0
votes
0answers
29 views

Best way to display top level list

I am working on my first Android application. Right now it uses fragments to separate between the main sections of the app (error code lookup and deal of the week are my fragments) and I now want to ...
0
votes
1answer
91 views

Android Application run perfectly on emulator but crash on my own mobile

i made an Android Application who create a list with the email of all contacts and when you click on a contact send the email to him. The problem is that when the app has to receive the list of ...
0
votes
2answers
32 views

list spasial file type in a folder in android

I want to list only .db files in a folder and join them to one db file..At this time I am just able to list all files in my folder..Can some one help me how to filter .db files?and then whats the best ...
0
votes
0answers
70 views

Source not found: com.android.internal.os.ZygoteInit$MethodAndArgsCaller

I used the debuger and I noticed that when the onPostExecute() finished the application stopped cause Source not found: com.android.internal.os.ZygoteInit$MethodAndArgsCaller. I can not understand ...
-1
votes
2answers
144 views

Nested Json parsing with GSon

How to parse below Json Response with google Gson.? { "rootobject":[ { "id":"7", "name":"PP-1", "subtitle":"name-I", "key1":"punjab", ...
3
votes
3answers
38 views

Targeting strings in a listview android

listView.setOnItemClickListener(new OnItemClickListener() { @Override public void onItemClick(AdapterView<?> parent, View view, int position, long id) { ...
0
votes
1answer
61 views

Simple Adapter to show part of List (made with Hashmap) by keyword

I have but of a problem. I've made a list as following: List<Map<String, String>> ShopsList = new ArrayList<Map<String,String>>(); private void initList() { // ...
1
vote
1answer
46 views

Android - Creating a List like the Grocery IQ List

(Using Android version 4.0.4) I'm trying to build functionality very similar to the list found on the GroceryIQ app: I can create a nice looking list using the ExpandableListView shown in the xml ...
0
votes
1answer
57 views

OnLongClick stopping OnClick

I am using a Listview. before implementing OnLongClick, my onListItemClick was working perfectly, however now, after implementing OnLongClick the long clicks work and normal list clicks don't do ...
1
vote
1answer
39 views

How to find out what intent callback reference to what

this may sounds stupid but I can't wrap my head around it. I have a custom ListAdapter that populates the rows with images, text and other stuff thats all structured by my models. Now I want that ...
0
votes
2answers
159 views

OnListItemClick in an activity

In my Android app I have a list of countries that I can add new entries to at any time when the app is running. This list is held in a database. I have tried several different ways of trying to ...
0
votes
1answer
52 views

CustomAdapter java.lang.NullPointerException on PostEcecute

I have a an application which retrieves data from a database and displays it with a CustomListView. When the app is going to show the ListView it crashes with this log: 03-28 13:22:16.963: ...
0
votes
1answer
48 views

expandable list and dialer

I have an expandable list with a header and a number. I want to complete the action using a dialer whenever the number in the list is clicked. Im stuck with the getChildView method, I need to extract ...
0
votes
1answer
54 views

push button from background class

i haveBroadcastReceiver , when he gets certain information i want him to press button inside the activity . the button delete\update row inside the list inside this activity . how it can be done ? ...

1 2 3 4 5 15