| bio | website | reactivstudios.com |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 1 year, 8 months |
| seen | 12 hours ago | |
| stats | profile views | 80 |
|
Feb 14 |
comment |
ListView doesn't update on returning to the activity Are you re-reading your preferences in onResume()? |
|
Feb 4 |
comment |
What does this line mean in Java: boolean retry = id == 1; Thanks! Very useful. |
|
Jan 29 |
comment |
Method setAlpha() does not get called in onTouchListener ACTION_MOVE event I get values from -100 to 200 and above, depending on where my finger is. |
|
Dec 9 |
comment |
creating android views by code You're welcome. @user1676486 thanks for the edits. And I agree about the booleans. |
|
Dec 6 |
comment |
Edit Text is not showing while opening the soft keyboard in android Normally the activity is not fullscreen and you add flags to make it fullscreen. If your app is fullscreen that means you have them. You should remove those flags (see the edit in my answer). |
|
Dec 6 |
comment |
Edit Text is not showing while opening the soft keyboard in android Well, it is not just with webview, although it was reproduced with it. What you are doing right now is basically reproducing it again with a different view. Try removing fullscreen flag in your app and see if that fixes your problem. |
|
Jun 17 |
comment |
Animation using Runnable? I do call run() at the end of the loop. |
|
Jun 17 |
comment |
Animation using Runnable? The loop would be too fast for the animation to show properly, Runnable lets me repeat the bitmap transformation i times to have a running animation. Also this is a perspective animation, for which I couldn't find a normal Animation method. |
|
May 1 |
comment |
Orientation listener in a service Thank you! Both links were very useful. |
|
Nov 24 |
comment |
Cursor with one phone number for each contact Thanks a bunch! This is really helpful. |
|
Nov 24 |
comment |
Cursor with one phone number for each contact Does this mean you can use other sql statements in the selection, like for example LIMIT? |
|
Nov 24 |
comment |
Cursor with one phone number for each contact Wow, this actually worked! Thanks! So how does my whole SELECT statement look with this? I mean where does 1 come in? Also you mention that this is a hack, is this an acceptable way to use? I.e. could I suffer in the future if I need to expand the code? |
|
Nov 17 |
comment |
Populate ListView from an Arraylist<HashMap<String, String>> Thanks! I will look into this. |
|
Nov 17 |
comment |
Populate ListView from an Arraylist<HashMap<String, String>> This kind of makes sense, but I'm trying to understand the population process. How does getView() get the data for each row from my HashMap? And shouldn't I also implement newView()? Thanks for the help! |
|
Nov 4 |
comment |
Loading contact photos into contact list: random contact photos appear in wrong places Found the other culprit as well - my bindView was recycling the rows so I had previously loaded photos appear in random other rows. Fixed by adding an else statement to if (photoBitmap != null). Thanks for the help! |
|
Nov 2 |
comment |
Loading contact photos into contact list: random contact photos appear in wrong places To clarify, this happens when I start scrolling the list. Could it be because of getView or newView, should I be overwriting those too or something? |
|
Nov 2 |
comment |
Loading contact photos into contact list: random contact photos appear in wrong places yes, thank you! This partially solved the problem - it now shows the correct photos next to correct contacts. But I still get random photos next to random other contacts who don't have contact photos. Any ideas? |
|
Oct 18 |
comment |
Filtering a cursor with WHERE conditionchangeCursor() worked, thank you very much! |
|
Oct 18 |
comment |
Filtering a cursor with WHERE condition Thank you very much, I will try these hints! |
|
Oct 18 |
comment |
Filtering a cursor with WHERE condition Sorry, forgot to mention - the list stays as it is, i.e. it does not get updated as per the filter. Thanks for the db input tip :) i do constrain input to only digits and coupe special characters, so no worries there. |