android developer

less info
9,430 reputation
82586
bio website
location Israel
age
visits member for 1 year, 10 months
seen 5 mins ago
stats profile views 2,252

1h
comment Error importing HoloEverywhere
i have tons of errors with the library after i've downloaded both the HoloEverywhere (v1.6.1) and the ActionBarSherlock library (v4.3.1) . only the actionBarSherlock has the android-support-v4.jar file. what is going on?
2h
comment Show AlertDialog using Sherlock with the Holo theme?
the CTOR you've used for the builder is available only from API11 . also, even if you use AlertDialog.Builder(new ContextThemeWrapper(this, R.style.MyFragment)); , it won't work. tested on galaxy s2 with android 2.3.5 .
3h
comment Drawable from Assets Layout
i should have written it in an answer then. will you tick my answer if i wrote it again?
3h
comment How to manage installed apps (with root permission if necessary )?
@ChrisStratton actually this is not something i was interested in, and i'm quite sure you can install an apk without any confirmation if your app is a system app or has root permission. the play store can do it, and you can do it via adb, so it's possible. what i am interested in is getting as much control of already installed apps.
4h
comment How to manage installed apps (with root permission if necessary )?
@phil aren't there adb commands for clearing the app's default ? or check if it has internal/external data ? or cache ? it could be useful for batch operations... it could be useful for different configutrations and tests
4h
comment Is it possible to take a screenshot of a view, without showing the view?
how would i make them all to draw to a bitmap instead of to the screen, and without really add them to the real views hierarchy ?
4h
comment Drawable from Assets Layout
well if it's not dynamic between iterations of the for-loop, it should be outside of it,since it's called on each iteration. about the decoding, try to set the "inScaled" to false or the "inDensity" of the bitmapOptions to be the same as the current screen density. it depends on what you want from the bitmap to be. android treats images in regard to the screen density, so it can't know what you want from it without you telling it what to do.
5h
comment Drawable from Assets Layout
i don't understand the upper area of the code and it looks like you're doing something really wrong (depends on what "createArray" does) , but for the decoding, try to use this instead : stackoverflow.com/a/8501428/878126 . if needed, add bitmapOptions for the decoding : developer.android.com/reference/android/graphics/…, android.graphics.Rect, android.graphics.BitmapFactory.Options)
5h
comment Is it possible to take a screenshot of a view, without showing the view?
what do you mean "Test App" ? i want to know about it for any kind of app.
5h
comment How to use text ads on admob?
no i haven't. weird that i didn't remember seeing a notification from SO about your answer. i will check it out soon. thanks.
6h
comment Drawable from Assets Layout
when decoding the bitmap from the assets, you can add some options to the BitmapOptions so that it won't scale it, including avoiding density properties. can you please show the code?
6h
asked Is it possible to take a screenshot of a view, without showing the view?
6h
answered Android, AsyncTask not running on onDestroy()
10h
answered Android: ListView with rounded corners
11h
comment ActionBarSherlock doesn't support light-theme alert dialogs?
@stoilkov i've tested the HoloEverywhere sample(from the play store) and i think it should be perfect for the dialog. however, not only i can't find out how they did it in their library, but i can't even import it as they have so many errors.
1d
comment How to read System logcat on android jelly bean?
i'm not sure, but maybe this is the lecture i've watched that they say it's against their "rules" : developers.google.com/events/io/2012/sessions/gooio2012/102 . i think a woman has answered to this question.
1d
comment How to read System logcat on android jelly bean?
app locker ? what's an app locker? do you mean what is shown when the screen is turned on ? if so, that's something that is totally different. if not, and i guess you mean something that blocks other apps from launching, google already answered about using the logs for this purpose, and it's against their "rules" (don't remember the exact words) for such a thing to exist. if you want to have something that doesn't allow simple launching of apps, you can create a launcher. it will usually work (won't work for notifications, but for app icons it will work).
1d
comment Keyboard now shows on inflated editText even after clicking on it
as i've written, the solution i've found isn't perfect...
1d
revised Keyboard now shows on inflated editText even after clicking on it
added 510 characters in body
1d
comment Keyboard now shows on inflated editText even after clicking on it
it didn't help. however, i've found an alternative, which doesn't show the keyboard right away, but after clicking the edittext, it will be shown. soon i'll update my question.