map tag

65 questions


1 answers
147 views
0
How do I maintain the insertion order of the HashMap?

I'm using HashMap. Whenever I repeat the map, I receive the data in random order even though I put it in sequential order. I need to get it sequentially, what should I do?

2 years ago

1 answers
136 views
0
Can I sort the map by key value in Java?

<question1, 1>, <question9, 1>, <question2, 4>, <question5, 2>I made a map that has this kind of data. I want to arrange the key value in question 1, question 2, question 3. In...

2 years ago

1 answers
70 views
0
To set a bitmap with a resource

bm = BitmapFactory.decodeResource(null, R.id.image);Is this how I set the bitmap in the resource?

2 years ago

1 answers
147 views
0
How to get a bitmap from ImageView

ImageView image = R.findViewById(R.id.imageView);image.setImageBitmap(someBitmap);How do I get a bitmap from the image view when given like this?


1 answers
81 views
0
Is it better to use a comma as? after try-exception?

Usually from exceptiontry: passexcept Exception, exception: passtry: passexcept Exception as exception: passThey use it in these two ways. Which one is the standard?The second source code is okay to r...

2 years ago

1 answers
103 views
0
Remove the key from the hash on Ruby/Rails and return only the remaining hash

After removing the key from the hash on Ruby/Rails, how can I get only the remaining hash returned?To add a new hash {:a => 1, :b => 2}.merge!({:c => 3}) # => {:a=>1, :b=>2, :c=>3...

2 years ago

1 answers
123 views
0
[JAVA] I have a question about HASH in HASH.

Hello, I am a student studying Android.HASH is in the HASHMAP.Well, to put it simply, KEY : valueA : 1B : 2C : 3D : 4E : 5There's this HASH, and dozens of these types of hashes have gone into the new ...

2 years ago

1 answers
73 views
0
To extract bitmaps from Uri on Android

How do I get a bitmap object from Uri? If you receive it and save the bitmap, you can save it by /data/data/MYFOLDER/myimage.png or file///data/MYFOLDER/myimage.pngI think we'll use these two paths. I...


3 answers
122 views
0
How do I put an icon in the center of the screen in Google Map on Android?

We are currently producing a mobile community application.I'd like to mark the center on the map.I don't want to mark it with a marker, but I want to classify it separately like an image icon.I want t...

2 years ago

1 answers
81 views
0
Problems with different file sizes when loading and rewriting files to Bitmap

Bring the pictures of the gallery from Android and put them on Bitmap bm.compress(Bitmap.CompressFormat.PNG, SAMPLING, out); bm.compress(Bitmap.CompressFormat.JPEG, SAMPLING, out);What's wrong with th...

2 years ago
« - 2 - »

© 2024 OneMinuteCode. All rights reserved.