Re: [android-developers] Custom drawing states possible?

2014-02-06 Thread Alik Elzin
Try adding an onclicklistener and invoke refreshDrawableState from performClick. On Tuesday, November 6, 2012 1:29:06 PM UTC+2, Mustafa Ali wrote: Tried using it on 4.0.3, the onCreateDrawableState method is not getting called. On Tuesday, April 1, 2008 4:52:19 AM UTC+5:30, Megha wrote:

[android-developers] Re: floating window with actionbar

2012-12-03 Thread Alik Elzin
Having the same problem :( On Friday, June 29, 2012 1:36:37 AM UTC+3, Johan Bilien wrote: Hi, I'm trying to place an activity in a floating window, with an action bar. Something similar to this: http://dl.dropbox.com/u/168185/floating-action-bar.jpg If I set the theme of my activity to

[android-developers] Re: FileObserver not returning file changes within subfolders?

2012-07-30 Thread Alik Elzin
See an open bug: http://code.google.com/p/android/issues/detail?id=12479 -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

[android-developers] Re: Broadcast receiver won't receive camera event!

2012-03-28 Thread Alik Elzin
The action com.android.camera.NEW_PICTURE is not documented. Why should it work on different devices? On Saturday, January 1, 2011 6:46:54 PM UTC+2, androidman wrote: Hi, I'm trying to make an app that detects when a user takes a photo. I set up a broadcast receiver class and registered it in

[android-developers] Re: Help about understanding screen size/density

2012-03-08 Thread Alik Elzin
the system scale it for you. On Thursday, March 8, 2012 3:48:14 AM UTC+8, Alik Elzin wrote: Hi. I have a problem understanding how to match a full screen background image (the resource) to the correct folder (drawable-what). Example: If I have a 480x800 pixels background image that should fill

Re: [android-developers] Re: Help about understanding screen size/density

2012-03-08 Thread Alik Elzin
What should the folder's name be? On Thursday, March 8, 2012 11:37:42 AM UTC+2, Anirudh Loya wrote: Create another Drawable folder above drawable-hdpi and paste all your images there. It will work fine. -- You received this message because you are subscribed to the Google Groups

Re: [android-developers] Re: Help about understanding screen size/density

2012-03-08 Thread Alik Elzin
Thanks you Anirudh. As I asked Zsolt: So if I have the same background drawable suited for other resolution screen - 720×1280 - what folder should it be? On Thursday, March 8, 2012 12:33:00 PM UTC+2, Anirudh Loya wrote: Dude... Check this flow. [image: Inline image 1] -- You received

Re: [android-developers] Re: Help about understanding screen size/density

2012-03-08 Thread Alik Elzin
-xhdpi. A 8-9 tablet could conceivable have a 1280 * 720 screen, but that would be medium density, drawable-mdpi. Android running on a notebook with a 1280 * 720 screen would probably be low density, or drawable-ldpi. -- K 8 марта 2012 г. 15:24 пользователь Alik Elzin написал: Thanks you

[android-developers] Help about understanding screen size/density

2012-03-07 Thread Alik Elzin
Hi. I have a problem understanding how to match a full screen background image (the resource) to the correct folder (drawable-what). Example: If I have a 480x800 pixels background image that should fill the whole screen, what folder does it belong? And why? (I couldn't find it in the