[android-developers] Device Compatibility Problem on Google Play

2016-04-29 Thread Christoph Rosenberger-Abeler
Google Play (WEB) tells me that my app (Kompass PRO YACA) is incompatible with my devices. On my Devices PlayStore the app (Kompass PRO YACA) is compatible. I can not find out where the Problem on Google Play is. So i uploaded a LITE version, a clone of PRO without some Features - same manifest.

[android-developers] Re: Open Samples in Eclipse

2012-08-06 Thread Christoph
s don't work as expected I have more under control if I am using the commandline Christoph -- 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 unsubscrib

[android-developers] Open Samples in Eclipse

2012-08-06 Thread Christoph
ting Code" does not work, since some metadata is missing. Is there an eclipse-aware version of the samples? Or is there some other way in eclipse to import the samples (better then creating a new project and merging the sample stuff into it)? Christoph -- You received this message because you ar

[android-developers] Problem with Android Manifest.xml and android:cantSaveState="true", leads to "resource identifier found error"

2012-07-22 Thread Christoph Klug
I can't use android:cantSaveState="true" (or false) because I get the error: ==> error: No resource identifier found for attribute 'cantSaveState' in package 'android' (in AndroidManifest.xml; Android AAPT Problem) I'm using eclipse, android:minSDKVersion 14, android:targetSdkVersion 1

[android-developers] Re: OpenGL ES libraries

2010-07-13 Thread christoph widulle
http://code.google.com/p/libgdx/ libgdx could be something you are looking for. Greetings, Christoph On 13 Jul., 16:23, Sundog wrote: > I looked around for info on this in the group but couldn't find any... > so far in my OpenGL programming I've just done everything direc

[android-developers] time.format() bug on real device ?

2010-07-12 Thread Christoph Podkowik
In this function: public String millisec2duration(int millisec) { final int MILLIS = 1000; Time time = new Time(); time.set(millisec * MILLIS); return time.format("%H:%M:%S"); } millisec2duration(0); returns "00:00:00

[android-developers] Which thread invokes SensorEventListener.onSensorChanged

2010-05-03 Thread Christoph Heindl
, "" + Thread.currentThread().getId()); to retrieve threading information. I'm running android 2.1 update1. Best regards, Christoph -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send em

Re: [android-developers] Re: ClassCastException using element

2010-03-16 Thread Christoph Renner
Have you considered using TableLayout? I've never used it but it sounds promising for what you want to do. Chrigi On Tue, Mar 16, 2010 at 1:32 PM, Neilz wrote: > I see. Thanks Mark. > > That's frustrating, as View does some really useful things that I > can't get other view types to do. > > Basi

Re: [android-developers] Progress Dialog

2010-03-05 Thread Christoph Renner
Hi LeGeNDuS I assume this's because your UI thread is busy executing your operations and therefore cannot show the progress dialog. Try to execute your operations in an other thread (e.g. by using AsyncTask). Cheers, Chrigi On Fri, Mar 5, 2010 at 12:07 PM, LeGeNDuS wrote: > Hello! > > I'm App I

Re: [android-developers] Re: multiple buttons + dialog box

2010-02-10 Thread Christoph Renner
layout of the dialog and not the activity, just calling findViewById will search for views in the activity's layout. I think this will fix your problem. Cheers, Chrigi On Wed, Feb 10, 2010 at 11:22 PM, André wrote: > Done! To the email in your profile. > > > > On Feb 10, 11:00 

Re: [android-developers] Re: Rotation with ListActivity

2010-02-10 Thread Christoph Renner
taGP"); >        Vector vect = new Vector(); >        vect.add(listaGP);      //save list >        vect.add(onDownloadFinished);   //save handler >        return vect; >    } > > In this way would I have to be able to save the references of both? > > On 10 Feb, 20:53,

Re: [android-developers] Re: multiple buttons + dialog box

2010-02-10 Thread Christoph Renner
t;8pt" >                        android:layout_column="1" >                android:layout_gravity="center" /> >                        android:id="@+id/button6" >                        android:text="@string/button6" >                        android:layout_width="110

Re: [android-developers] Re: multiple buttons + dialog box

2010-02-10 Thread Christoph Renner
is faulty or the > findviewbyid? That's hard to say, could you post popup_new.xml, (or at least the part with the 4 buttons). > > André > > On Feb 10, 8:47 pm, Christoph Renner wrote: >> Hi Andre >> >> from the logcat: >> >>   192): java.lang.Nul

Re: [android-developers] Re: Rotation with ListActivity

2010-02-10 Thread Christoph Renner
url;     //url sorgente xml >        private Handler downloadFinished; >        private boolean isListDownload; //flag che indica quale download sto > effettuando >        ArrayList lista;       //SD per ListActivity >        String [] array;        //SD per la GaraVIew Activity > >      

Re: [android-developers] Re: multiple buttons + dialog box

2010-02-10 Thread Christoph Renner
:38 PM, André wrote: > Ok, I think I got it. > > Try this link, > http://www.andreborud.com/android/trace3.txt > > > > On Feb 10, 3:34 pm, Christoph Renner wrote: >> It should look like the second example >> onhttp://youtrack.jetbrains.net/issue/IDEA-24746.

Re: [android-developers] Re: multiple buttons + dialog box

2010-02-10 Thread Christoph Renner
ere is a > link to it: > > http://www.andreborud.com/android/trace2.txt > > Thanks > > André > > On Feb 10, 3:01 pm, Christoph Renner wrote: >> This is not really useful, could you use logcat (either in eclipse or >> by running adb logcat) to get to the s

Re: [android-developers] Re: multiple buttons + dialog box

2010-02-10 Thread Christoph Renner
okespecial java.lang.RuntimeException(java.lang.String) [4] >     9  athrow >      Line numbers: >        [pc: 0, line: 9] >      Local variable table: >        [pc: 0, pc: 10] local: this index: 0 type: > java.lang.reflect.InvocationTargetException > } > > And when I run t

Re: [android-developers] Re: multiple buttons + dialog box

2010-02-10 Thread Christoph Renner
lem still looks exactly the > same. Would you happen to have any other suggestions? > > Cheers > André > > On Feb 10, 2:01 pm, Christoph Renner wrote: >> Hi Andre >> >> I assume that buton 3-6 are in R.layout.poput_new and not >> R.layout.main, in that case you

Re: [android-developers] multiple buttons + dialog box

2010-02-10 Thread Christoph Renner
Hi Andre I assume that buton 3-6 are in R.layout.poput_new and not R.layout.main, in that case you call findViewById on the activity which does not contain those buttons. You need to call findViewById on the dialog after you called setContentView. Try the following: in onCreate: remove the follo

Re: [android-developers] Rotation with ListActivity

2010-02-09 Thread Christoph Renner
Hi Noodles, I guess the problem is the following: your thread has a reference to the Activity or ListView. When the download is finished the thread uses this reference to add the items to the ListView. However when the screen orientation has changed, the activity has been destroyed and recreated a

Re: [android-developers] Custom AlertDialog

2010-02-05 Thread Christoph Renner
Hi Sasikumar You can create an instance of the class Dialog or if its more complex create a new class which extends Dialog. On that instance call setContentView() Here is a simple example: http://developer.android.com/guide/topics/ui/dialogs.html#CustomDialog You can find more examples using goo

[android-developers] GMail unread mail count

2009-12-10 Thread Christoph
this! I would be happy to receive feedback. Cheers, Christoph -- 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 e

[android-developers] Re: odd issues with port 80

2009-08-21 Thread christoph widulle
i had similar problems with my mapview-app which is loading marker from a webserver (port 80). it is throwing exceptions hat the httpclient has no open socket connection. after switching to port 8080, everything is ok. but this only occurs in the emulator. so i test it on the phone or change to po

[android-developers] Re: Setting a listener for drag animations in MapView

2009-08-11 Thread christoph widulle
) gesture-event in GestureDetector.SimpleOnGestureListener. i added a lazyload-call with a delay of 1 second in here (the same way like for the zoom event). that ist working fine for me ! i'll include it in the next update... greetings, christoph On 11 Aug., 11:21, Cachapa wrote: > > I

[android-developers] Re: Setting a listener for drag animations in MapView

2009-08-10 Thread christoph widulle
imation is finished, i added a 1 second delay before calling the lazyload-process (only in case of a zoom). the library ist not perfect and version 1, maybe you can contribute some improvements. i'll have time to work on it after the ADC... Greetings :) On 10 Aug., 14:27, Cachapa wrote:

[android-developers] Re: Setting a listener for drag animations in MapView

2009-08-10 Thread christoph widulle
imation is finished, i added a 1 second daly before calling the lazyload-process (only in case of a zoom). the library ist not perfect and version 1, maybe you can contribute some improvements. i'll have time to work on it after the ADC... Greetings :) On 10 Aug., 14:27, Cachapa wrote:

[android-developers] Re: Setting a listener for drag animations in MapView

2009-08-10 Thread christoph widulle
Hi Daniel, check out mapview-overlay-manager. http://code.google.com/p/mapview-overlay-manager/ its a library that exactly addresses to your needs. would be great if you can give me some feedback. Greetings, Christoph On 7 Aug., 14:01, Cachapa wrote: > Hi, > > I have a class whic

[android-developers] Detect Audio from microphone

2009-08-05 Thread Christoph Steiner
Hello, i want to detect input from microphone in my application. Similar to how they use it in the application Steamy Windows, where they detect blowing into the microphone to make the window steamy again. So far i only found tutorials on how to save audio from the microphone, but i don't need t

[android-developers] Re: Converting Android audio recordings to mp3

2009-07-29 Thread Christoph Dworzak
Hi On Mon, Jul 27, 2009 at 05:42:39PM -0700, tansaku wrote: > So Android support recording of audio in the 3GPP/AMR format, however > it seems that there is no built in support for conversion to mp3 which > is what I need to be able to upload audio to a web service I am > working with. [..] Hav

[android-developers] Re: Getting PCM data from the builtin audio decoders

2009-07-20 Thread Christoph Dworzak
Hi On Thu, Jul 16, 2009 at 10:19:23AM -0700, sandy8531 wrote: > I have a similar need for my application. > http://groups.google.com/group/android-framework/browse_thread/thread/dcd1cd51d3c4d036 I've searched the android sources and found the same functions mentioned in this thread, but i don't

[android-developers] Re: ItemizedOverlay & ArrayIndexOutOfBoundsException > explanation AND solution !!

2009-07-16 Thread christoph widulle
Thanks for your post ! Helped me so much !! On 15 Jul., 17:09, Piwaï wrote: > Hi all ! > > I want to share with you the solution to a weird problem I was having. > I think it was mostly due to my misunderstanding of the way > ItemizedOverlay works. I couldn't find the sources, and the usage is

[android-developers] Re: SharedPreferences bug when writing strings with ampersands in them

2009-03-09 Thread Christoph Studer
This is a known issue and has a fix that will be part of a future release: http://code.google.com/p/android/issues/detail?id=1707&can=1&q=SharedPreferences&colspec=ID%20Type%20Version%20Security%20Status%20Owner%20Summary On Mon, Mar 9, 2009 at 11:36 AM, cmgreen...@googlemail.com wrote: > > Don

[android-developers] Re: How to clear a notification when using a PendingIntent?

2009-02-10 Thread Christoph Studer
You need to specify the FLAG_AUTO_CANCEL in the Notification.flags field: http://code.google.com/android/reference/android/app/Notification.html#FLAG_AUTO_CANCEL Christoph On Tue, Feb 10, 2009 at 10:22 PM, Mariano Kamp wrote: > Hi, > > I am wondering how you would cancel a notifica

[android-developers] Re: How to solve the landscape mode issue?

2009-02-10 Thread Christoph Studer
. The outer ScrollView should have android:width="fill_parent" and android:height="fill_parent". The inner LinearLayout should have android:width="fill_parent" and android:height="wrap_content". Please post excerpts of your layout file so we can see what'

[android-developers] Re: How to add the superscript affect to the string?

2009-02-10 Thread Christoph Studer
Not that I know of. One can find some clues here: http://code.google.com/android/reference/android/text/Spannable.html#setSpan(java.lang.Object, int, int, int) http://code.google.com/android/reference/android/text/style/CharacterStyle.html Christoph On Tue, Feb 10, 2009 at 12:28 PM, Mark

[android-developers] Re: How to add the superscript affect to the string?

2009-02-10 Thread Christoph Studer
Actually, styled text supports superscript. A string resource like E=mc2 will display as expected. Christoph On Tue, Feb 10, 2009 at 11:54 AM, Mark Murphy wrote: > > manoj wrote: >> Hi frnds, >> >> I would like to write m2 (m to the power of 2, 2 should be on t

[android-developers] Re: Question about Preference Screen

2009-02-09 Thread Christoph Studer
hen you see the contents of that PreferenceScreen. So it the return value of getDialog() is depending on when exactly you call it. What is it exactly you want to achieve after accessing the dialog? On Tue, Feb 10, 2009 at 3:11 AM, robert wrote: > > Dear Christoph > Thanks for ur reply:)

[android-developers] Re: Voice Recognition like in Voice Search? (STT)

2009-02-09 Thread Christoph Studer
You can find the doc for 1.1 on the new homepage: http://developer.android.com/reference/packages.html AFAIK voice recognition is not part of the SDK, at least it's not mentioned in the changes: http://developer.android.com/sdk/android-1.1.html#api-changes Christoph On Mon, Feb 9, 2009

[android-developers] Re: Question about Preference Screen

2009-02-09 Thread Christoph Studer
log, but that's probably what it is. (As an alternative, the inner PreferenceScreen could specify an activity intent that is fired when the user clicks on its list entry.) Christoph On Tue, Feb 10, 2009 at 2:00 AM, robert wrote: > > Hi All: >When I see the doc of Preferen

[android-developers] Re: Please Help! Service seems to sleep when phone is inactive

2009-02-07 Thread Christoph Studer
. Sorry for the long post and I hope this information is helpful (and accurate :-)). Christoph * One has to pay special attention to the control flow in the case of exceptions. Make sure that a thrown exception won't prevent release() from being called: void doSomeWork() throws SomeExcepti

[android-developers] Re: Central service scheduler

2009-02-07 Thread Christoph Studer
Sweet! Thanks for the reply and looking forward to that API. Christoph On Sat, Feb 7, 2009 at 8:57 PM, Jean-Baptiste Queru wrote: > > There is something like that in cupcake. I forgot the exact API name, sorry. > > JBQ > > On Sat, Feb 7, 2009 at 10:19 AM, Christoph Studer

[android-developers] Re: Central service scheduler

2009-02-07 Thread Christoph Studer
Greg White wrote: > > > On Sat, Feb 7, 2009 at 1:19 PM, Christoph Studer wrote: >> >> Would it make sense to create a central scheduler for services that >> need to run periodically? >> >> There are a lot of application that want to run at periodic interval

[android-developers] Re: SharedPreferences - is it secure?

2009-02-07 Thread Christoph Studer
pired. Christoph On Sat, Feb 7, 2009 at 7:42 PM, Teo wrote: > An auth token would be great, coincidentally it's a Google service i need a > password for. > @JP: Wouldn't a finder of a lost phone have access to the user's Google > account in the first place? From wha

[android-developers] Re: SharedPreferences - is it secure?

2009-02-07 Thread Christoph Studer
urely think techniques like this should be used to provide better security to users. Christoph On Sat, Feb 7, 2009 at 7:18 PM, JP wrote: > > > > On Feb 7, 9:43 am, Christoph Studer wrote: >> (Note that rooted devices do not provide this security, because any >> app

[android-developers] Central service scheduler

2009-02-07 Thread Christoph Studer
likewise. This central service scheduler could be part of the platform/SDK or it could be a user APK, much like some of the OI components already available. Any thoughts? Christoph P.S.: Not sure whether android-developers is the right mailinglist, but it does not quite fit

[android-developers] Re: SharedPreferences - is it secure?

2009-02-07 Thread Christoph Studer
ntents/wiki/CryptoIntents For authentication at Google services, I think there's a plan to allow apps to obtain an auth token for the Google account associated with the device. See this discussion: http://groups.google.com/group/android-developers/browse_thread/thread/f63f19acb691c980/ddc37cd8e23d56c8?

[android-developers] Re: Math.Sin(90) doesn't return 1?

2009-02-01 Thread Christoph Studer
According to the doc: http://code.google.com/android/reference/java/lang/Math.html#sin(double) you need to provide the angle in radians, where 2*Pi corresponds to 360 degrees (i.e. Pi/2 is 90 deg). http://en.wikipedia.org/wiki/Radian In Java, you can use the constant Math.PI for Pi. Christoph

[android-developers] Re: Interupt rasing to check application stability

2009-01-30 Thread Christoph Studer
not available, AFAIK. Christoph On Fri, Jan 30, 2009 at 11:23 AM, Raja Nagendra Kumar wrote: > > In the SDK of android, is it possible to raise different interupts > such as SMS, MMS, Call and see how the application racts.. > > Can the interuppts be sent from one emulator in

[android-developers] Re: Running more than one .apk in the same process?

2009-01-30 Thread Christoph Studer
lipse access to classes of the other APK but instruct aapt to not pack them into both APKs. Thank you and greetings to the HQ :-) Christoph On Fri, Jan 30, 2009 at 6:49 AM, Dianne Hackborn wrote: > The two .apks must be signed with the same certificate, use > android:sharedUserId in

[android-developers] Re: Are you localizing an app? Do you want to be?

2009-01-27 Thread Christoph Studer
I was looking for something like DateUtils for my application. I think this class is not in the current SDK, but only available in cupcake. Christoph On Tue, Jan 27, 2009 at 10:32 AM, Jeffrey Sharkey wrote: > > Another quick tip regarding localization is that the framework offers

[android-developers] Re: Sporadic SharedPreferences reset

2009-01-27 Thread Christoph Studer
droid/preference/PreferenceActivity.html#addPreferencesFromResource(int) If you provide your own UI to change preferences, such as your two buttons to read and write, you can remove the XML. The rest of the code looks okay and should work fine. Christoph On Tue, Jan 27, 2009 at 4:35 AM, radiolis

[android-developers] Re: Sporadic SharedPreferences reset

2009-01-26 Thread Christoph Studer
you'd have to handle yourself, e.g. SD card not mounted or being unmounted (which will kill your process if you don't handle it correctly). Christoph On Tue, Jan 27, 2009 at 2:54 AM, radiolistener wrote: > > I've been struggling with these shared preferences. I want to

[android-developers] Re: Adding padding between buttons in a LinearLayout

2009-01-26 Thread Christoph Studer
Hello Inder, nice to see you here. :-) padding{Left,Top,Right,Bottom} is - like in CSS - within the bounds/border of the widget you apply it to. You can use layout_margin{Left,Top,Right,Bottom} attributes to accomplish what you intend to do. Cheers, Christoph On Mon, Jan 26, 2009 at 5:55 PM

[android-developers] Re: Sporadic SharedPreferences reset

2009-01-25 Thread Christoph Studer
ipped down ImapStore for my app and included it as a jar in my package. But it's very very unlikely that this would have an impact. Christoph On Sun, Jan 25, 2009 at 5:53 PM, Daniel wrote: > > This has been a recurring problem with K-9: > http://code.google.com/p/k9mail/issues/

[android-developers] Re: Sporadic SharedPreferences reset

2009-01-25 Thread Christoph Studer
After removing "<" and ">" from the preferences I have not seen this problem anymore. Sorry, I don't know what else could cause your problems, Chander. Christoph On Sun, Jan 25, 2009 at 12:08 PM, android_soft wrote: > > I have noticed this behavior coup

[android-developers] Re: Sporadic SharedPreferences reset

2009-01-24 Thread Christoph Studer
">" from the pref value and see how it goes. Christoph On Sat, Jan 24, 2009 at 6:56 PM, Christoph Studer wrote: > Hello, > > I'm making use of SharedPreferences in my application. One part is a > PreferenceActivity and the other part is a backend that acce

[android-developers] Sporadic SharedPreferences reset

2009-01-24 Thread Christoph Studer
e.com/p/android-sms/source/browse/trunk/android-client/src/tv/studer/smssync/SmsSync.java and http://code.google.com/p/android-sms/source/browse/trunk/android-client/src/tv/studer/smssync/PrefStore.java Thank you, Christoph --~--~-~--~~~---~--~~ You received

[android-developers] bindService and call of onServiceConnected

2008-11-09 Thread Christoph
isconnected. So, if the Activity was stopped and not destroyed, the service variable is not null. If it was destroyed, it is only null because it is newly created. Can someone reproduce this behaviour? By the way, the service was already started in onCreat