[android-developers] Re: Display Cropped Camera Preview

2013-06-06 Thread kaciula
Four years later, I would like to konw if you have found a good way to show a cropped camera preview? I am struggling with this for a couple of days. On Wednesday, May 20, 2009 10:29:07 PM UTC+3, Max Salley wrote: I'm working on an app that requires the user to be able to read some text

Re: [android-developers] Re: RECEIVE_BOOT_COMPLETED not sent after power off? (works on restart)

2012-12-20 Thread kaciula
I have a similar issue. My users on Samsung Galaxy S 3 report that after reboot, my app's alarms don't work anymore. On my nexus one and other tested devices, everything works OK after reboot. What would be the solution for this? On Monday, February 7, 2011 12:18:52 AM UTC+2, Kostya Vasilyev

[android-developers] Re: Sole Trader in Germany?

2012-07-23 Thread kaciula
Thanks for all the info. Indeed, what is the perfect way to handle this is to open a business bank account in the company's name. And I think UK is the most appropriate for this. But it will take time and it will cost. We can't really afford it right now because we're in an early stage of our

[android-developers] Re: Sole Trader in Germany?

2012-07-20 Thread kaciula
your own bank account in Romania and use that? On Thursday, July 19, 2012 7:09:04 AM UTC-5, kaciula wrote: Is anyone here a developer who sells Android apps via Google Checkout and is located in Germany? I need some basic info regarding the tax system in Germany. I am a Sole Trader located

[android-developers] Re: Sole Trader in Germany?

2012-07-20 Thread kaciula
:04 UTC+2 schrieb kaciula: Is anyone here a developer who sells Android apps via Google Checkout and is located in Germany? I need some basic info regarding the tax system in Germany. I am a Sole Trader located in Romania and, in order to sell Android apps, I've linked my Google Checkout

[android-developers] Sole Trader in Germany?

2012-07-19 Thread kaciula
Is anyone here a developer who sells Android apps via Google Checkout and is located in Germany? I need some basic info regarding the tax system in Germany. I am a Sole Trader located in Romania and, in order to sell Android apps, I've linked my Google Checkout with a German bank account owned

[android-developers] AutoCompleteTextView doesn't show dictionary suggestions

2012-03-05 Thread kaciula
I have a custom AutoCompleteTextView where the user can freely enter text and whenever the user writes @ I show a dropdown with suggestions of custom usernames. Unfortunately, I also need to show the dictionary word suggestions above the keyboard and, for some reason,

[android-developers] Re: Scenario where initLoader() does not call onLoadFinished()

2011-12-12 Thread kaciula
As I said, the initial bugs were fixed by revision 4 of ACL. However, there is still a bug present in both the ACL and Android. I've tested it with Android version 3.2 and 4.0. Check out the updated project at https://github.com/kaciula/BugRetain I think this is a pretty important bug

[android-developers] Re: Scenario where initLoader() does not call onLoadFinished()

2011-11-04 Thread kaciula
It turns out that the new revision fixed part of the problem but the bug still remains in some cases. If you take the code I posted and run it, press the button to launch the new activity, switch orientations only once and then press BACK, it shows the wrong value. The idea is to press BACK

[android-developers] Re: Scenario where initLoader() does not call onLoadFinished()

2011-10-24 Thread kaciula
The new revision (rev. 4) of android support package fixes these issues. -- 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] Monkeyrunner doesn't work after icecream sandwich update

2011-10-19 Thread kaciula
I've just installed the latest Android tools, platform tools and platform. If I try to run monkeyrunner in a terminal I get the following exception: Exception in thread main java.lang.NoClassDefFoundError: com/android/chimpchat/ChimpChat at

Re: [android-developers] Re: Scenario where initLoader() does not call onLoadFinished()

2011-10-17 Thread kaciula
However, if I compile it using API Level 7 but run it on a tablet emulator I still can reproduce the problem. I thought that if you used the acl, when running on a honeycomb device, the built-in fragment implementation would be used. But I see that this is not the case here. Regarding the

[android-developers] Re: Scenario where initLoader() does not call onLoadFinished()

2011-10-11 Thread kaciula
Indeed, the loader manager destroy() method is called and the field mDestroyed is set to true. After this, the loader manager is not functional anymore. In onLoadComplete() it exits if mDestroyed is set to true. So i guess the problem is that the loader manager for that fragment is destroyed

[android-developers] Re: Scenario where initLoader() does not call onLoadFinished()

2011-10-11 Thread kaciula
I noticed that this problem doesn't appear if I use a ListFragment with a CursorLoader/AsyncTaskLoader and setRetainInstance(true). It only happens when I use a basic Fragment with CursorLoader/AsyncTaskLoader and setRetainInstance(true). -- You received this message because you are

Re: [android-developers] Re: Scenario where initLoader() does not call onLoadFinished()

2011-10-11 Thread kaciula
Here you go: https://github.com/kaciula/BugRetain It uses a CursorLoader to take 2 values from a database through a content provider and shows them on screen. Press the button to move to a second activity, then press BACK and then switch orientation of device. The values from db are no longer

[android-developers] Scenario where initLoader() does not call onLoadFinished()

2011-10-07 Thread kaciula
I have a simple activity with one fragment. The fragment uses a CursorLoader to load some data from a ContentProvider. I just call initLoader() inside onActivityCreated() and I populate the UI in onLoadFinished(). If I switch orientations, everything works as expected (onLoadFinished() is

[android-developers] Re: savedInstanceState always null

2011-09-22 Thread kaciula
What you are experiencing is a known bug (at least known by me for over a year now). Check out my answer here http://stackoverflow.com/questions/3042420/home-key-press-behaviour/4782423#4782423 I've also filed an issue a couple of months ago. The idea is that in some situations, after you press

[android-developers] Re: Not trusted server certificate

2011-07-04 Thread kaciula
Check out this link: http://code.google.com/p/android/issues/detail?id=15968 From 9th December 2010 RapidSSL and Geotrust certificates have been issued from a new 2048Bit root. You have to install an intermediate certificate on the server side. On Jun 30, 7:17 pm, dashman erjdri...@gmail.com

[android-developers] Re: Main Activity Launches On Stack Every Time Home Screen Icon Is Clicked

2011-04-11 Thread kaciula
Check out my answer (kaciula user) on this issue on stackoverflow.com: http://stackoverflow.com/questions/3042420/home-key-press-behaviour/4782423#4782423 I've filed a bug on b.android.com a couple of months ago but the bug report is still unnoticed. On Apr 9, 9:14 am, Tony Chuinard tony.chuin