[android-developers] Re: Immersive mode instructions reappear randomly

2013-11-30 Thread niko001
I'm able to consistently reproduce the issue and I've filed a bug here: https://code.google.com/p/android/issues/detail?id=63065 A sample app that demonstrates the bug is available here: https://github.com/niko001/com.greatbytes.immersivebug/ Am Montag, 25. November 2013 18:0

[android-developers] Re: Immersive mode instructions reappear randomly

2013-11-25 Thread niko001
Thanks, Bob! I've tried using a different View and calling setSystemUiVisibility() in onWindowFocusChanged(), but the problem stays the same :-/! On Monday, November 25, 2013 4:43:13 PM UTC+1, b0b wrote: > > I use immersive mode and doesn't have the problem you describe. > > But I'm not calling

[android-developers] Immersive mode instructions reappear randomly

2013-11-25 Thread niko001
Hi, my app uses the new "immersive mode" by calling (in onCreate()): int uiOptions = getWindow().getDecorView().getSystemUiVisibility(); uiOptions |= View.SYSTEM_UI_FLAG_HIDE_NAVIGATION; uiOptions |= View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY; getWindow(

Re: [android-developers] READ_LOGS permission is not granted to 3rd party applications in Jelly Bean (api 16)

2012-07-12 Thread niko001
I think that locking out developers from using APIs (and yes, I know that it wasn't part of the SDK) for security purposes is an entirely wrong approach. Sure, malicious things can be done with reading the logs, but in the same vein, a kitchen knife can be used to kill someone. Every API can be

[android-developers] Distinguish between Power button and Screen timeout

2011-02-11 Thread niko001
Hi, in reply to this discussion: http://groups.google.com/group/android-developers/browse_thread/thread/491a9901f0cc58d6# (which is too old to reply to): Is there any way to distinguish between "the user pressed the power button" and "the screen timed out"? ACTION_SCREEN_OFF is sent in both cases

[android-developers] Re: Uri from FilePath?

2010-09-29 Thread niko001
le the query... > > > I think you can obtain the desired results with a MediaStore query and > > the original uri if you add a 'selection' that filters on > > mySubDirectory: > > >   contentResolver.query(uri, null, > >       MediaColumns.DATA + "

[android-developers] Uri from FilePath?

2010-09-24 Thread niko001
[I have asked this question on Stackoverflow, but haven't gotten any replies in 2 days] Hi, I am using the Gallery3D-Code for a test-app but want it to only display images from a sub-folder on the SD, not all of the images that are stored on it. To do this, I tried to change public static final

[android-developers] Re: Certain apps not being shown in Android Market?

2010-06-11 Thread niko001
Still not working for me :-/! I've just found a pirated version of one of my apps (that had copy-protection enabled) floating around on several different sites, so the copy protection apparently isn't doing much good anyway and I can safely disable it ;-)! On Jun 9, 1:17 am, TreKing wrote: > On

[android-developers] Re: Certain apps not being shown in Android Market?

2010-06-08 Thread niko001
Great, thanks for letting us know! At the moment, I still can't see copy-protected apps, but hopefully it will take effect soon (provided that this is the same non-visibility- issue they're talking about here...:-)) On Jun 8, 11:17 pm, powder wrote: > Google did a fix: > > http://android-devel

[android-developers] Re: Certain apps not being shown in Android Market?

2010-05-24 Thread niko001
Hi, you're right, it's definitely a copy-protection issue, thanks for figuring that out :-)! The new "Market Filters" document in the official Dev Guide states: "Forward-Locked Applications To forward lock an application, set copy protection to "On" when you upload the application to Market. Mar

[android-developers] Re: Apps not showing in market after factory reset with Froyo.

2010-05-23 Thread niko001
I'm having this issue even without performing a factory reset, see http://groups.google.com/group/android-developers/browse_thread/thread/96d33683093a3dd7 On 23 Mai, 23:30, "SoftwareForMe.com" wrote: > I have a friend who had this exact thing happen. I'll let you know if he > figures it out, an

[android-developers] Re: Certain apps not being shown in Android Market?

2010-05-23 Thread niko001
27;s a general Market-issue which Google needs to fix. Best regards, Nick On 23 Mai, 17:18, Hermes Pique wrote: > I'm having the same problem. Some users are reporting that one of our > apps doesn't show up the Android Market with Froyo. > > Best, > > H. > > O

[android-developers] Certain apps not being shown in Android Market?

2010-05-23 Thread niko001
Hi, some of my apps are not being shown in the market after updating to 2.2 (for no obvious reason, doesn't seem to be based on whether they are paid/free apps or on their target/minsdk-value). I've seen users reporting the same issues with a variety of apps on other forums, so I'm not the only on

[android-developers] Re: Device Seeding Program for Top Android Market Developers

2010-04-29 Thread niko001
Same for me (Germany). I'm not too bothered by it, however, because paid apps show up in search, in the normal category lists, and on the "downloads" tab, so the only "problem" is the missing paid apps-tab. Also, my headset-mic doesn't work, but still, I'm very happy that the phones finally arrived

[android-developers] Re: will donut be available for the mytouch 3g, or just the g1?

2009-07-27 Thread niko001
Donut is not a specific version, just a code branch, but it features should be implemented by all carriers and it should be available for all Android devices, but implementation times will likely vary (i.e. when you will actually get an update-notification). On 26 Jul., 17:24, azn bl1tzkr13g wro

[android-developers] Re: Movie.decodeStream(is) is returning NULL after updating to 1.5 SDK .

2009-07-27 Thread niko001
Hi Arvish, This issue has been documented before (although I don't know if it's officially listed as a bug yet), I haven't found a way around this yes, either (apart from splitting the gif into several pngs,, i.e. one png per frame). Best regards, Niko On 27 Jul., 11:28, Arvish wrote: > Hell

[android-developers] Re: Limit the size of a ScrollView

2009-07-26 Thread niko001
, Mark Murphy wrote: > niko001 wrote: > > Hi, > > > I am using aScrollViewas a child of an AbsoluteLayout to display a > > list of items inside this AbsoluteLayout. Because theScrollViewis > > embedded in the AbsoluteLayout's design, I want to restrict it's si

[android-developers] Limit the size of a ScrollView

2009-07-26 Thread niko001
Hi, I am using a ScrollView as a child of an AbsoluteLayout to display a list of items inside this AbsoluteLayout. Because the ScrollView is embedded in the AbsoluteLayout's design, I want to restrict it's size to fit the assigned area. Is there any way to set the height of the ScrollView or of t

[android-developers] Re: Clearing the cache of your app on exit

2009-07-25 Thread niko001
Hi Mark, thanks for your answer. I mean the cache that the users can delete themselves by going to Settings --> Apps --> Manage Apps --> "My App" --> Clear Cache Thanks for your suggestion, I'll try it! Niko On Jul 25, 2:27 am, Mark Murphy wrote: > niko00

[android-developers] Suppress WebView Password Manager Notice?

2009-07-24 Thread niko001
Hi, I have designed an app that logs into a web service by using a WebView instance. Each time the login form is submitted, the WebView asks whether the password should be stored now, later, or never (the typical dialog when logging in with the Android Browser). Is it possible to override this

[android-developers] Clearing the cache of your app on exit

2009-07-24 Thread niko001
Hi, is it possible to force the cache of your app to clear when the user exits the app? My app piles up cache data (rightfully so) on each start, which is no longer needed once the user quits the app, so I am trying to find a way to forcibly clear it. Thanks! Niko --~--~-~--~~-

[android-developers] [Android Developers Guide] Error in "Hello, WebView"

2009-07-24 Thread niko001
Hi, there is a typo in the "Hello, WebView" example in the Android Developers guide ( http://developer.android.com/guide/tutorials/views/hello-webview.html ) In the second section, under "2.", the line webview.setWebViewClient(new WebViewClientDemo()); should rather be webview.setWebViewClie