[android-developers] unsubscribe

2009-11-17 Thread flo
-- 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-develo

[android-developers] ScrollView vs. android:scrollbarAlwaysDrawVerticalTrack

2009-08-16 Thread Flo
lasses worked. Is the build-in scrolling related to layout_width and layout_height attribute values fill_parent and wrap_content? Does it matter for a common application (no widget) that the classes reside in the widget subpackage? It works, but is it intended to be used that way? Thanks & best regards,

[android-developers] Re: Vertical and Horizontal Scrolling together

2009-08-17 Thread Flo
ew's superclass is then good for? just a bit confused... Best regards, Flo --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developer

[android-developers] Re: Now ADC2 judging has begun.

2009-09-29 Thread Flo
On Sep 27, 1:35 pm, dka wrote: > applications to review that just crashed - so what to do about > it? I then just skipped it, because I cannot really say, if its specific to me. Other bad ratings will do it and - even if all do think like me, and act the same - latest "q-gate" that it will not

[android-developers] Re: Now ADC2 judging has begun.

2009-09-29 Thread Flo
Good to read this, On Sep 25, 5:27 pm, Sheenmue wrote: > Several times I had to go back toADC2app because the > app to review wasn't downloading, other times the app was downloaded > but wasn't installed and in several occasionsdownloadprogress > stopped at 0% and I had tocanceland start again s

[android-developers] moved Code: managedQuery() / getContentResolver() NullPointerException

2010-01-02 Thread Flo
Hey there! I'm currently working on a component that's retrieving contact information and creating an RDF model (FOAF tbe) from the data provided. I started off with the HelloAndroid example and tried some code in there. Everything worked out fine, so I wanted to put everything in a seperate class

[android-developers] querying ContactsContract: How can I use smth like GROUP BY?

2010-01-02 Thread Flo
Hey there! I'm querying the ContactsContract.Data table like the following: [...] Uri contactsURI = ContactsContract.Data.CONTENT_URI; String[] projection = new String[] { ContactsContract.Data._ID, ContactsContract.Data.CONTACT_ID,

[android-developers] Re: How do I retrieve the MIMETYPE of an entry?

2010-01-02 Thread Flo
Well.. I solved this one in the meantime by simply adding ContactsContract.Data.MIMETYPE to my projection. No idea why I didn't see that this column existed in the first place, even more as I'm using it in my selection. On 1 Jan., 19:53, sloth wrote: > Hey! > > I'd like to query the contacts and

[android-developers] Re: moved Code: managedQuery() / getContentResolver() NullPointerException

2010-01-03 Thread Flo
Okay, so my suspicion was right! How can I achieve passing the parent activity to it? Does this involve Intents? Or should the CPAddressbook simply extend the parent activity? Thanks for your help so far, Flo. On 3 Jan., 02:17, Dmitri Plotnikov wrote: > Actually, no need for a stack tr

[android-developers] Re: moved Code: managedQuery() / getContentResolver() NullPointerException

2010-01-03 Thread Flo
Okay, so my suspicion was right! How can I achieve passing the parent activity to it? Does this involve Intents? Or should the CPAddressbook simply extend the parent activity? Thanks for your help so far, Flo. On 3 Jan., 02:17, Dmitri Plotnikov wrote: > Actually, no need for a stack tr

[android-developers] Re: moved Code: managedQuery() / getContentResolver() NullPointerException

2010-01-04 Thread Flo
tactsURI, projection, where, whereArgs, orderBy); } Thanks a lot for your help Dmitri!! :) On Jan 3, 11:46 am, Flo wrote: > Okay, so my suspicion was right! > > How can I achieve passing the parent activity to it? > Does this involve Intents? Or should the CPAddressbook simply extend &

[android-developers] moved Code: can't open a browser anymore (via FBRocket)

2010-01-09 Thread Flo
r. Now I don't get any errors, exceptions or anything. Is is possible that my class lacks a permission to open a browser or something? Thanks for your help, Flo -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this gr

[android-developers] Re: Someone use GridLayout (ADT-17) in v7?

2012-04-22 Thread Flo
I'm also trying to integrate the support library for GridLayout into my application. To test the integration I created a small project where I copied the layout from the previous post into the layout file. There are no errors or anything but when I check the layout in the visual editor or by runnin

Re: [android-developers] Re: Someone use GridLayout (ADT-17) in v7?

2012-04-22 Thread Flo
I'm also trying to integrate the support library for GridLayout into my application. To test the integration I created a small project where I copied the layout from the previous post into the layout file. There are no errors or anything but when I check the layout in the visual editor or by ru

[android-developers] Error when Using Camera on Android 4/Nexus s

2012-02-14 Thread flo
Hi, When trying to port some code to Android 4 (4.0.3/Nexus S) we found an issue with the MediaRecorder, I have attached the stacktrace. The same code worked without any problems on the same device running Android 2.3.x. I'd be thankful for ideas. Code: MediaRecorder testRecorder = new MediaReco

[android-developers] Re: Best approach for onConfiguratinChange()

2011-10-14 Thread Flo
Let Android handle it. Just create a second layout folder called "layout-land" and put all your landscape layouts in. The layouts must have the same file name like the layouts in the normal "layout" folder for portrait mode. Android will pick the right folder to get the layout from. On landscape m

[android-developers] Receiving palm (swipe) gesture / always getting only ACTION CANCEL - intercepted by system?

2016-02-22 Thread Flo
Hi everyone, I would like to detect a touch event when the user places his palm on the screen (at a specific position). I have already played around with onTouchEvent, onInterceptTouchEvent, dispatchTouchEvent and I really think that I have understood all those mechanisms. What happens when I

[android-developers] Re: Receiving palm (swipe) gesture / always getting only ACTION CANCEL - intercepted by system?

2016-02-23 Thread Flo
Update: Indeed, this issue occurs on Samsung devices only. getParent().requestDisallowInterceptTouchEvent(true) seems to be ignored by parent layers on these devices. If anyone has an idea how to fix this, please let me know! Thanks -- You received this message because you are subscribed to t

[android-developers] Changing ringer mode to RINGER_MODE_SILENT doesn't prevent the phone from vibrating

2010-04-15 Thread Flo
h off the vibration mode manually. am.setVibrateSetting(AudioManager.VIBRATE_TYPE_RINGER, AudioManager.VIBRATE_SETTING_OFF ); But this also doesn't stop the phone vibrating. So, does anyone has an idea what I'm doing wrong? Bye, Flo -- You received this message because you are su

[android-developers] Re: Changing ringer mode to RINGER_MODE_SILENT doesn't prevent the phone from vibrating

2010-04-17 Thread Flo
Today I tried to solve the problem and mute the vibrating phone by initiating a Vibrator object and calling the method cancel() on it. But this didn't stopped the vibration either. Is it possible that you cannot interrupt the vibration of an incoming call at all? -- You received this message bec

[android-developers] LiveFolders.ICON_BITMAP

2010-05-19 Thread Flo
w solution by nEx.Software from http://groups.google.com/group/android-developers/msg/df827eac13582883 Could someone post how this is done? I did not find out how to add a blob[] as expected by the LiveFolderAdapter layer nor how to add an entry for an Object like Bitmap. Thanks & best regards, Flo --