0
votes
2answers
55 views

removing the value from a object in java or android

private String[] userKeys; userKeys = MHConstants.friendsModelDetails.keySet().toArray( new String[MHConstants.friendsModelDetails.size()]); if(MHConstants.friendsModelDetails.size()>0 ){ ...
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
23 views

How would I correctly implement parcel/parcelable in a Hash of objects in Java/Android

I have the following classes: Experiment and Measurements. I pass a HashMap containing Experiment objects as a value, and their Experiment.getExperimentName as a key, between Android activities. ...
0
votes
1answer
18 views

How to send a List to next Intent

I want to send this 'list' to the next class(HomeActivity).But i was trying to do it by sending extras but couldn't somebody please help me to fix this code protected void onPostExecute(final ...
0
votes
1answer
37 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
1answer
27 views

Android Reading from txt to hashmap

I'm trying to make an app that reads from .txt file into a hashmap then prints a random hashmap entry on button click. But i am getting error like "FATAL EXCEPTION:main", i can figure out what the ...
-4
votes
2answers
82 views

Take values from ArrayList<HashMap<String, String>> [closed]

I have a problem about getting a value from my ArrayList<HashMap<String, String>>. My code is: ArrayList<HashMap<String, String>> myArrayList; and then: HashMap<String, ...
0
votes
2answers
52 views

Android drawing a path ON TOP of another path

So I am facing this weird problem in my drawing app. I drew these lines from 1 to 8 from top to bottom and from left to right. While I'm drawing the line, it shows as it's drawing Behind all the ...
0
votes
1answer
45 views

Drawing multiple lines and remembering their thickness

It might be because I had a long day and it's quite late already, but I can't seem to figure out what I am doing wrong. I just want to be able to draw lines at my finger's position with each line to ...
-1
votes
2answers
71 views

ArrayList data to ListView

I have collection of HashMap<String,Object> data as ArrayList. I used following method to add HashMap data to ArrayList. mylist = new ArrayList<HashMap<String, Object>>(); for ...
0
votes
3answers
80 views

Display drawable in Sherlocklistfragment with custom layout

Im trying to display drawables from packages installed on the android device example: "com.android.browser" to show an icon for the application. I have setup an sherlocklistfragment with this layout ...
1
vote
1answer
38 views

How to correctly add data to a Hashmap

I need to store a name and score for my android game and after a whole day of trying everything from shared preferences to SQLite, I am now experimenting with a HashMap, which seems to be storing my ...
-3
votes
5answers
66 views

Problems with ArrayList<HashMap<String,String>> and IF-STATEMENT [duplicate]

I have a Array List with HashMap deviceDataCollection = new ArrayList<HashMap<String,String>>(); I have to retrieve some data from this Array e compare using an IF-STATMENT, like the ...
0
votes
0answers
59 views

How to put a hashmap (key, value) data into a spinner?

im a bit noob on android, i want to create a spinner with company names, and i want to create a hashmap because i have an ID for each company Name, here is my code: JSONObject mainJson = new ...
-2
votes
1answer
99 views

HashMultiMap: different kinds of values, and example code? [closed]

I'm trying to create a HashMap mapping together three different values of two different types: a String key, and a String and integer pair of values. (I want to be able to sort the resulting ...
1
vote
1answer
46 views

Use values from HashMap only with right key

I`m trying to create a list of ImageViews with small images and to show big by clicking on them. I use parser in AsyncTask to download from site. At first step ("doInBackground") parser read urls ...
1
vote
2answers
116 views

How to sort the arraylist from hashmap?

Im using hashmap and arraylist... How to sort the arraylist ? eg) In hashmap values are in order like one,two,three,four,five but i stored these values in arraylist the order changed like ...
1
vote
1answer
70 views

How to convert a POJO to map / map to POJO in Android

My Question is : is there a tool like BeanUtils(apache) can be used in ANDROID? Please give me some hint. //here is a simple POJO public class Pojo{ private String name; private int age; ...
-1
votes
2answers
36 views

Unable to save a hashmap object into a file in andoid

I'am downloading lot of images from internet and storing into a hashmap and showing in a listview. I want to cache the images. For that, Iam storing the hashmap object into a file inside onDestroy() ...
0
votes
1answer
89 views

android listview with item and sub item not working properly

I have a database which i select 2 strings one as an item other one is description.I am trying to map these 2 strings into a listview item-subitem layout. the following code is what i tried so far. ...
0
votes
2answers
72 views

Sort arraylist a,b,c based on arraylist d

I need to sort a couple of arraylist based on another array but don't really know how to go about it.I have the list distance and i sort it using collections. that works perfectly but i want to sort ...
0
votes
3answers
107 views

Sorting HashMap<String, String> with integers as Strings

I'm trying to sort my HasMap ArrayList so my listview is sorted by values but I'm not getting it. Basically I have several keys and one of them is "type" which holds values like "1", "4", "3",.... I ...
0
votes
0answers
24 views

Viewpager, save checked button

I use viewpager with button list (for multiple choice questions). I want to save checked button when I swipe to other pages, But it gives me NullPointerException error on line " ...
0
votes
0answers
50 views

How to change the duplicate values with empty in arraylisthashmap in android?

i want to change duplicate value with empty in arraylist hashmap how can we change the duplicate value with empty you can see i have TAG_ALPHAABET in that i store 0 to 9 and a to z i want to ...
1
vote
1answer
39 views

Proguard and HashMap<String, MyObject>

I'm developing some apis for android as a library project and I'd like to export them as an obfuscated jar. I have various classes but the only public entities are: MyInterface: An interface ...
0
votes
5answers
174 views

HashMap return method

I have a method in a class, which initialize a HashMap and put some keys and values inside it, then the method returns the HashMap. How can I retrieve the returned HashMap? public Map<String, ...
0
votes
1answer
63 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() { // ...
0
votes
2answers
58 views

Check if a key from Hashmap is typed in an AutoCompleteTextView

I created an HashMap<String, String> that i populated beforehand. And i want my AutoCompleteTextView to tell me, as i'm typing if it's in the HashMap or not. Here's my code so far : ...
1
vote
4answers
82 views

How to solve Array IndexOutOfBoundException in Android

I have 5 lists of years and 5 lists of amounts corresponding to year lists. year_Earnings = [2011,2012,2013]; year_Expense = [2011,2012]; year_Investment = [2013]; year_Returns=[]; ...
0
votes
1answer
215 views

hashmap working in simpleadapter but not working in custom array adapter

Hashmap for the code below is working for simpleadapter array but not for custom array adapter .Why ? and how do I fix it ? Please Help.Unable to resolve .Tried everything. I am using lazyLoading ...
0
votes
1answer
121 views

listview lazyadapter

I like to pass selected item value from ListView to another activity. I am using this code to get the details associated with the hashmap but I get java.lang.Integer cannot be cast to ...
0
votes
1answer
32 views

NPE on Putting Key/Value in HashMap

I have a simple Hashmap public HashMap<String,String> StoreDet;. Now, whenever I try to put some value as: String val = (eElement.getElementsByTagName("name").item(0) .getTextContent() ...
1
vote
3answers
906 views

add the value in Arraylist<string,List<String>> in hashmap android

I have to fetch the lis of data. So i have used the arraylist of string with list.here how can i add the value on map. I have used below code: static final String KEY_TITLE = "Category"; ...
0
votes
3answers
44 views

Listview not getting generated as desired

I have an activity where I want to generate a listview from an Arraylist, which is getting populated from a Hashmap. The list is getting generated, but only one item is showing in the list, its ...
2
votes
2answers
227 views

hashmap in android xml parsing

I have to fetch the data from xml feed and display on android application. my xml feed is looking like: <root> <Categories> <Category name="Books"> <Articles> ...
-4
votes
2answers
34 views

Fatal Error that I can't solve-list

while I developing an android application I had an error: "Unable to start activity Component Info :X . RunTimeExcepetion : your content must have a list . View whose ID attribue is ...
0
votes
2answers
97 views

How do i store bytearray as value in hashmaps?

i tried to store a bytearray in a LinkedHashMap static Map<Long, byte[]> lhm2 = new LinkedHashMap<Long, byte[]>(1000); But lhm2.get(1) will throw a NullPointerException. lhm2 ...
1
vote
1answer
259 views

How to use unordered_map in Android?

I am trying to use a hash_map, defined in the Android NDK, but I get a "deprecation warning": ndk/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/../backward/backward_warning.h:33:2: error: #warning ...
0
votes
1answer
109 views

GoogleMap: Edit markers and polylines

I have a long, variable list of Markers and Polylines I'm getting from my server. In some conditions, the Markers have to change their icons, and the Polylines have to change their colors. My objects ...
0
votes
2answers
75 views

Sorting Hashed maps Map<String,?>

I am trying to sort and get the top 3 maxium values for the VALUE(?) Map<String,?> points = map Tried using Map<String, String> and it works fine, but in this case I need ...
0
votes
0answers
82 views

Map and List android

How do i store this List<Map<String,?>> items = new LinkedList<Map<String,?>>(); to a variable array and create a multiple of this. I'm new to this and i'm kinda confuse of how ...
0
votes
0answers
48 views

Response null when getting 2nd hashmap of xml in parsing xml with DOM

Anyone can help me with this problem??? XML and XML1 strings (which contains xml response of the web service ) are ok! the method for parsing works for the first ArrayList<HashMap<String, ...
2
votes
1answer
141 views

Scala - mutable HashMap -> write to file / read from file -> HashMap null

I have this Scala code running on an Android device: // create Map val myMap1 = new HashMap[Int, String]() myMap1.put(1, "a") // write it to file val outStream = context.openFileOutput("test.txt", ...
2
votes
2answers
88 views

Memory efficiency with HashMap in Android

When I first started learning about HashMap's I wrote my companies in-house Android app with individual maps for each line item's properties. Line items are dynamic and have several properties with ...
2
votes
2answers
220 views

Hashmap And Google Maps

i would like to implement sth like this, What I have i have json data with lat and lng values, So I want all these into Hashmap, I done it and its working What I need How I can put these stored ...
1
vote
0answers
51 views

how to add contents of cursor into hashmap?

I am using this link http://www.android-app-market.com/call-log-content-provider-in-android-application.html to get data from the call log content provider my requirement is i want to add cursor ...
0
votes
2answers
113 views

how to parcel hashset with custom objets

im implementing an application in android and i need to make my objets parcelables to move between activities. I use hibernate in the server so my classes have hashsets as atribute and i dont know how ...
0
votes
2answers
64 views

How to organize extracted values when working with jsoup?

How do you guys store the values extracted using jsoup in a way where it can be easily readable? So if you have an HTML code like below. <td width="200">country1 </td> <a ...
1
vote
1answer
127 views

Google Maps hashmap with LatLng

I have created one simple class which called MapMarker and it is the following: public class MapMarker { private long id; private String resName; public MapMarker(){} public ...
1
vote
2answers
104 views

Get the more attribute value on single xml document

How can i read the more attribute values on single document. This is xml sample xml file: <Categories> <Category name="Title 1" <SubCategory> <subcategory title="subtitle 1" ...

1 2 3 4 5 7