[android-developers] Android2.1

2011-10-14 Thread Anoop C
hai, I'm using Android2.1 mid tablet. I have mainly two problem in this paltform. 1. The mic is not working while calling. 2. bluetooth is not starting. 1) I have tested calls using skype(2.1.0.46) or fring(3.1.1.1).No 2G calls allowed in this tablet. I have beginner in android

[android-developers] Re: Adapting BluetoothChat Example for One Server and Multiple Clients

2011-10-14 Thread Pedro Perez
polyclefsoftware djames at gmail.com writes: In attempting to solve this issue, I believe I have successfully extended the official Android Bluetooth Chat example to work with a server connecting to multiple clients. I've uploaded my modifications to github here:

[android-developers] Re: Ringtones and RIAA

2011-10-14 Thread ko5tik
On 14 Okt., 02:08, mrqzzz marcus.ob...@gmail.com wrote: Hi, i am trying to understand if i am going to get in trouble if i publish a soundboard with a dozen of pieces of famous soundtracks (star wars, superman,etc..) having a lentgh of about 30 secs. or 2 mins. Certainly. AFAIR there is 10

Re: [android-developers] Ringtones and RIAA

2011-10-14 Thread Kristopher Micinski
Generally this group cannot help with legal issues. It is advised you consult a lawyer, as nobody here can offer (solid) legal advice on any firm basis. Kris On Thu, Oct 13, 2011 at 8:08 PM, mrqzzz marcus.ob...@gmail.com wrote: Hi, i am trying to understand if i am going to get in trouble if i

[android-developers] Re: NFC implementation

2011-10-14 Thread Dominik
Sticky-Notes application (demonstrating P2P): https://nfc.android.com/StickyNotes.zip Dominik -- 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

Re: [android-developers] Re: Vibrate Trigger on Android Device

2011-10-14 Thread Lee Farrell
That's perfect, exactly what I was looking for, thanks! regards, Lee Farrell On Fri, Oct 14, 2011 at 5:37 AM, Studio LFP studio@gmail.com wrote: Have you tried this out?

[android-developers] Re: Http Live Streaming

2011-10-14 Thread kiranmai
Hi we are unable to open the URL which you have sent...Please share me some information on HLS working on HC 3.0 version. Is HLS working on HC 3.0. Because when i am trying it is giving segmentation fault. Also on what all versions does HLS support??? Regards, Kiranmai. On Oct 13, 3:59 pm,

[android-developers]

2011-10-14 Thread safwat sabra
-- 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+unsubscr...@googlegroups.com For more options, visit

[android-developers] Re: List with seperators, checkboxes...

2011-10-14 Thread BearTi
Ok, thats what I wanted... It works perfect... One last question: When I store/set for example a boolean value to my sharedprefences object checkbox1... Ist this value stored until I deinstall this app? On 12 Okt., 17:44, TreKing treking...@gmail.com wrote: On Wed, Oct 12, 2011 at 10:37 AM,

[android-developers] Button Animation

2011-10-14 Thread F4L|{0
hi I have a problem with an animation of a button. I would move and fade a button from a origin position to another position. well i created a translate animation and fade animation, i start the animation with the follow code: AnimationSet exchangeAnimation = new AnimationSet(true);

[android-developers] Re: major problem with network location fixes and their timestamps

2011-10-14 Thread Mathias
I thought that It seems as though the Location.getTime() sometimes isn't accurate, in that the system under certain circumstances just updates the time of an old fix and passes it on as though it was new. For us, this is very unfortunate. and I *need* recent fixes, and for that i need to know

[android-developers] Re: major problem with network location fixes and their timestamps

2011-10-14 Thread Mathias
As mentioned in another reply and in my original post, this issue is about the network provider. My app can't wait forever, user sometimes has gps turned off and it doesn't work indoors. When i DO get a GPS fix, it works fine. Thanks for feedback mate. On Oct 14, 6:54 am, Studio LFP

[android-developers] Re: My app is on market but any device can install it

2011-10-14 Thread jpwens
Confianceo On 13 oct, 19:16, Appaholics raghavs...@appaholics.in wrote: Could you tell us the name? Thanks On Thu, Oct 13, 2011 at 7:57 PM, deloupy jp jpdelo...@gmail.com wrote: Hi, 1) We can't find our appli  in  android market, only in our developer account . It has been

[android-developers] Urgent!! Do I need to buy Google Maps license for my Android app?

2011-10-14 Thread elFerZur
I want to develop an Adroid App (for internal use and therefore not for Android Market) that uses Google Maps Api to view vehicles and people positions in real time over maps. The application is not for comercial use. It will only be used by a selected number of users that have android phones, and

Re: [android-developers] Re: HTC and LG haven't implemented Android in the right way

2011-10-14 Thread Latimerius
On Wed, Oct 12, 2011 at 7:09 PM, MobileVisuals eyv...@astralvisuals.com wrote: Thanks a lot for the info! The problem is that the positions for the stars change for each new frame. This happens because the positions are morphed.Wouldn't it be very slow to sort all the positions according to

[android-developers] Re: APK must be signed with the same certificates as the previous version

2011-10-14 Thread MobileVisuals
I will try to find the old keystore file. It is somewhere on the PC, but I don't know where, because I can't start the old installation of Eclipse. What file type can it be? Can it be only .ks files? On Oct 13, 4:10 pm, Mark Murphy mmur...@commonsware.com wrote: On Thu, Oct 13, 2011 at 10:07 AM,

[android-developers] Re: HTC and LG haven't implemented Android in the right way

2011-10-14 Thread MobileVisuals
The morphed positions for the stars are calculated from some precalculated 3d arrays, one 3d array for each single galaxy shape, like below. positionsM1 and positionsM2 are the two 3d arrays, which get morphed for this frame. The result is the new morphedPositions array, which is drawn later. I

[android-developers] Best approach for onConfiguratinChange()

2011-10-14 Thread nikki
Hi all, I am a bit confused on setting up my screen UI. The point of confusion is I am having similar UI layout file for landscape and portrait. On screen orientation change shall i handle onConfigurationChange or i should let android do the complete activity life cycle and recreating the UI by

[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 mode

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

2011-10-14 Thread nikki
Thanks Flo for quick reply. In my case the landscape layout files have no changes they are as same as portrait, that's why i haven't created a separate landscape folder for layout(layout_land). So on change of orientation the android will pick the file from layout folder only. My confusion shall

[android-developers] window.location

2011-10-14 Thread elham
Dear all , Is there anyway to disable loading the urls from window.location ? I do not want to allow url passed from window.location to be loaded . Appreciate any assistance , Elham . -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

Re: [android-developers] Re: android.text.format.DateFormat.format performance

2011-10-14 Thread Thierry Legras
Thanks Steven! I will try that. As Date.getHours() etc. methods are mentioned as deprecated. I will check with Calendar class as well if it is still faster than DateFormat. Thierry. 2011/10/14 Studio LFP studio@gmail.com It is slow and so is String.format(). I've been messing around with

Re: [android-developers] Re: android.text.format.DateFormat.format performance

2011-10-14 Thread Thierry Legras
No I don't. Time as been converted from string to timemilli on a serveur for efficiency, and I have to convert them back to String when I want to display it. 2011/10/14 Zsolt Vasvari zvasv...@gmail.com Sure, if you don't care about localization issues. On Oct 14, 5:26 am, Thierry Legras

[android-developers] Any problems regarding LVL when moving apps from one Google account to another?

2011-10-14 Thread Mark Carter
I tried asking this question over on Android Discuss but unfortunately didn't get any reply: http://groups.google.com/group/android-discuss/browse_thread/thread/5598e3682828d3db To summarize: LVL signs responses with your public key (as given in the Edit Profile of your Developer account). So

Re: [android-developers] Re: APK must be signed with the same certificates as the previous version

2011-10-14 Thread Mark Murphy
On Fri, Oct 14, 2011 at 4:32 AM, MobileVisuals eyv...@astralvisuals.com wrote: I will try to find the old keystore file. It is somewhere on the PC, but I don't know where, because I can't start the old installation of Eclipse. What file type can it be? Can it be only .ks files? You supplied

[android-developers] Multiple Display suport

2011-10-14 Thread dani maoz
Hi Is there a tutorial regradig Multi screen support in Android, Is there a tutorial regarding HDMI support, Any information will be appreciated -- 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] EAAccessory Class in Android

2011-10-14 Thread riz
Hi , I am an iphone developer and curious to know is there any equivalent to Iphone EAAccessory Class in Android ? please advise . Regards -- 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] sorting the listview

2011-10-14 Thread vani reddy
Hi friends , How to sort the listview by date? My date format is Friday, Aug 12, 2011. I am able to sort the title but not the date. Please reply. Thanks. -- Regards, Vani Reddy -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

Re: [android-developers] Re: List with seperators, checkboxes...

2011-10-14 Thread TreKing
On Fri, Oct 14, 2011 at 2:39 AM, BearTi mlrti...@googlemail.com wrote: One last question: When I store/set for example a boolean value to my sharedprefences object checkbox1... Ist this value stored until I deinstall this app? Yes.

Re: [android-developers] sorting the listview

2011-10-14 Thread Mark Murphy
On Fri, Oct 14, 2011 at 7:52 AM, vani reddy vani.reddy.bl...@gmail.com wrote: How to sort the listview by date? Sort the data you give to your adapter by date. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog |

Re: [android-developers] Multiple Display suport

2011-10-14 Thread Mark Murphy
On Fri, Oct 14, 2011 at 7:30 AM, dani maoz maoz.d...@gmail.com wrote: Is there a tutorial regradig Multi screen support in Android, There is no multi screen support in Android. This has been added by device manufacturers and is outside of the SDK. Is there a tutorial regarding HDMI support,

Re: [android-developers] Help me Help me. HTML5 and Android

2011-10-14 Thread TreKing
http://developer.android.com/guide/webapps/index.html - TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago transit tracking app for Android-powered devices -- You received this

Re: [android-developers] Camera Built -in App

2011-10-14 Thread TreKing
On Thu, Oct 13, 2011 at 11:49 PM, nageswara rao rajana nagu.raj...@gmail.com wrote: But i dont this to happen what i have to do. Delete the duplicate? - TreKing

Re: [android-developers] Button Animation

2011-10-14 Thread TreKing
On Fri, Oct 14, 2011 at 2:49 AM, F4L|{0 simone.dolcio...@gmail.com wrote: somebody can help me on how to correctly position the hit area of the button? AFAIK, animations only make it look like an object is moving / scaling / whatever. The actual position / size / whatever of the View in

Re: [android-developers] Urgent!! Do I need to buy Google Maps license for my Android app?

2011-10-14 Thread TreKing
This hardly qualifies as Urgent!! On Fri, Oct 14, 2011 at 3:06 AM, elFerZur fzuri...@gmail.com wrote: Do I need some sort of license for this app?. What kind of license, and where can I buy it? http://tinyurl.com/69tcwn8

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

2011-10-14 Thread TreKing
On Fri, Oct 14, 2011 at 4:40 AM, nikki nikhileshsingh...@gmail.com wrote: My confusion shall I handle onConfigurationChange for orientation which will stop android to create a new activity or i should not handle onConfigurationChange and let android do the life cycle process complete. In

Re: [android-developers] Camera Built -in App

2011-10-14 Thread nageswara rao rajana
hi, I integrated built-in Camera app in my application, and i am saving the image captured in sdcard in seperate folder. But the same image also saving in predefined /sdcard/DCIM/Camera/*.jpg , But i dont this to happen what i have to do. Please help me. Thanking you, Nagu. --

[android-developers] ramdisk.img modification on Emulator

2011-10-14 Thread Naga
Dear Androiders, How to Modify init.rc and update ramdisk.img on eclipse emulator. Thank you Regards, Nagaraju -- 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

[android-developers] Read SMS without content://sms/ ??

2011-10-14 Thread BearTi
Hi, how can I read out the SMS? I´ve read somewhere that solution by content://sms/ is not good and future-proof , is that right or is this the only and best way? Thanks! -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

Re: [android-developers] Read SMS without content://sms/ ??

2011-10-14 Thread Mark Murphy
On Fri, Oct 14, 2011 at 8:42 AM, BearTi mlrti...@googlemail.com wrote: how can I read out the SMS? There is no support for this in the Android SDK, as storing SMS is the job of an SMS client, not the operating system. I´ve read somewhere that solution by content://sms/ is not good and

[android-developers] Re: Read SMS without content://sms/ ??

2011-10-14 Thread BearTi
Thanks! Hmm, so every SMS Backup App does it that way, too. Right? :-/ (Alternative I could root my Device and read out directly the sqlite database mmssms.db or?) On 14 Okt., 14:53, Mark Murphy mmur...@commonsware.com wrote: On Fri, Oct 14, 2011 at 8:42 AM, BearTi mlrti...@googlemail.com

[android-developers] Re: APK must be signed with the same certificates as the previous version

2011-10-14 Thread MobileVisuals
I thought that keystores are .ks files? On Oct 14, 1:22 pm, Mark Murphy mmur...@commonsware.com wrote: On Fri, Oct 14, 2011 at 4:32 AM, MobileVisuals eyv...@astralvisuals.com wrote: I will try to find the old keystore file. It is somewhere on the PC, but I don't know where, because I can't

Re: [android-developers] Re: Soft Home Button Makes Games Suck on Android

2011-10-14 Thread Streets Of Boston
Yes, The 'Home key' is very much like the 'truth' :-) -- 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] Android cocos2d game development

2011-10-14 Thread kalandar
Hi friends , I want to develop game with cocos2d... But i don't know how to start with it.. I am fresher for android. please help me to make it easy I need to know how to install cocos2d. any easy guide to start program.. Thanks in Advance. Regards Kalandar . N. -- You received

Re: [android-developers] Re: APK must be signed with the same certificates as the previous version

2011-10-14 Thread TreKing
On Fri, Oct 14, 2011 at 8:18 AM, MobileVisuals eyv...@astralvisuals.comwrote: I thought that keystores are .ks files? http://developer.android.com/guide/publishing/app-signing.html#signapp The docs sample use .keystore. It's really irrelevant. It's just a file.

Re: [android-developers] Re: APK must be signed with the same certificates as the previous version

2011-10-14 Thread Mark Murphy
On Fri, Oct 14, 2011 at 9:18 AM, MobileVisuals eyv...@astralvisuals.com wrote: I thought that keystores are .ks files? Not necessarily. The debug keystore is debug.keystore, for example. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy

Re: [android-developers] Re: Read SMS without content://sms/ ??

2011-10-14 Thread Mark Murphy
On Fri, Oct 14, 2011 at 9:10 AM, BearTi mlrti...@googlemail.com wrote: Hmm, so every SMS Backup App does it that way, too. Right? :-/ Presumably. They suffer from the same limitations. (Alternative I could root my Device and read out directly the sqlite database mmssms.db or?) That does not

Re: [android-developers] Re: Soft Home Button Makes Games Suck on Android

2011-10-14 Thread TreKing
On Fri, Oct 14, 2011 at 8:19 AM, Streets Of Boston flyingdutc...@gmail.comwrote: Yes, The 'Home key' is very much like the 'truth' :-) Goodness, I don't know what's worse - that joke or how long it took me to get it. =P

[android-developers] Re: Button Animation

2011-10-14 Thread F4L|{0
thanks for answer the my problem is how i can update the button position when the animation ends. I know that when the animation is ended is called onAnimationEnd of AnimationListner, but I wasn't able to update update the button position. On 14 Ott, 14:01, TreKing treking...@gmail.com wrote:

[android-developers] Re: Read SMS without content://sms/ ??

2011-10-14 Thread BearTi
Okay, thank u very much! :) I will try it via content-provider :-/ On 14 Okt., 15:23, Mark Murphy mmur...@commonsware.com wrote: On Fri, Oct 14, 2011 at 9:10 AM, BearTi mlrti...@googlemail.com wrote: Hmm, so every SMS Backup App does it that way, too. Right? :-/ Presumably. They suffer

Re: [android-developers] Re: Button Animation

2011-10-14 Thread TreKing
On Fri, Oct 14, 2011 at 8:40 AM, F4L|{0 simone.dolcio...@gmail.com wrote: but I wasn't able to update update the button position. Why not? - TreKing

[android-developers] Re: Button Animation

2011-10-14 Thread F4L|{0
because i don't know how do it. :) I searched a lot on internet, I have not found anything that could help me On 14 Ott, 15:45, TreKing treking...@gmail.com wrote: On Fri, Oct 14, 2011 at 8:40 AM, F4L|{0 simone.dolcio...@gmail.com wrote: but I wasn't able to update update the button

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

2011-10-14 Thread Mark Murphy
On Tue, Oct 11, 2011 at 11:34 AM, kaciula catalin.moro...@gmail.com wrote: 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

[android-developers] Android Open Accessory API

2011-10-14 Thread riz
Hi, Is it possible to read data from audio jack using Android Open Accessory API ? please advise or suggest alternate . Regards -- 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] Accelerometer: how to change the sample rate?

2011-10-14 Thread melis
Hello all, is it possible to change the accelerometer sample rate in some way? -- 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

Re: [android-developers] Re: Button Animation

2011-10-14 Thread TreKing
On Fri, Oct 14, 2011 at 8:54 AM, F4L|{0 simone.dolcio...@gmail.com wrote: because i don't know how do it. :) What did you try? There are numerous functions on View that would appear to allow you to manipulate its layout properties.

Re: [android-developers] Android cocos2d game development

2011-10-14 Thread TreKing
On Fri, Oct 14, 2011 at 8:21 AM, kalandar kasimk...@gmail.com wrote: I want to develop game with cocos2d... But i don't know how to start with it.. I am fresher for android. please help me to make it easy I need to know how to install cocos2d. any easy guide to start program..

[android-developers] animateWithDuration

2011-10-14 Thread bob
I'm converting an app from iphone to Android. On iphone there's a function called animateWithDuration that makes it easy to fade in UI stuff and slide in UI stuff. For instance, this fades some text in… then out: [UIView animateWithDuration:0.3 delay:0 options:0 animations:^{

[android-developers] Re: Button Animation

2011-10-14 Thread F4L|{0
for example i find this: exchangeAnimation.setAnimationListener(new AnimationListener() { public void onAnimationStart(Animation anim) {button.setEnabled(false);} public void onAnimationRepeat(Animation anim) {} public void

Re: [android-developers] animateWithDuration

2011-10-14 Thread Justin Anderson
Have you looked at Android animations at all? http://developer.android.com/guide/topics/graphics/view-animation.html http://developer.android.com/guide/topics/graphics/animation.html Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Fri, Oct 14, 2011 at

Re: [android-developers] Re: Button Animation

2011-10-14 Thread Justin Anderson
Perhaps this is what you are looking for? Never used it so I'm not sure, but look at this animation property: http://developer.android.com/reference/android/view/animation/Animation.html#attr_android:fillAfter Thanks, Justin Anderson MagouyaWare Developer

[android-developers] Re: Android cocos2d game development

2011-10-14 Thread Oli Wright
While I agree that Google is your friend in this case, to save you that minimal effort I can point you towards two possible options: http://www.cocos2d-x.org/ http://code.google.com/p/cocos2d-android-1/ Go on there and read any wiki and tutorial material they have, and review any code examples

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

2011-10-14 Thread Studio LFP
There has been a decent amount of conversation on this subject and there's no right answer. Regardless of which way you pick, make sure you understand the pros and cons. If you let Android do the work for you, make sure you understand that your application can be killed off and restarted at

[android-developers] Should ro.EMPTY_APP_MEM always be same as arguments in write /sys/module/lowmemorykiller/parameters/minfree

2011-10-14 Thread vishnu vardhan reddy madduri
Dear Google Team and all, Is it really needed that values setprop ro.FOREGROUND_APP_MEM 2048 setprop ro.VISIBLE_APP_MEM 3072 setprop ro.PERCEPTIBLE_APP_MEM 4096 setprop ro.HEAVY_WEIGHT_APP_MEM 4096 setprop ro.SECONDARY_SERVER_MEM 6144 setprop ro.BACKUP_APP_MEM 6144

[android-developers] Re: Multiple Display suport

2011-10-14 Thread Studio LFP
If you download the add-ons for other devices through the Android SDK Manager, you can usually find samples that come with them. If you look in the directory where you have the Android SDK, you'll find an add-ons directory. That should be where things like the LG 3D, KYOCERA multi-screen, Sony

[android-developers] Re: EAAccessory Class in Android

2011-10-14 Thread Studio LFP
Based on the documentation for the EAAccessory Class on Apple's site, there is not a single object like that in Android. Android gives you different classes based on the type of device you are wanting to connect to. Built-in things like Bluetooth, GPS, sensors and the likes are in packages

Re: [android-developers] Should ro.EMPTY_APP_MEM always be same as arguments in write /sys/module/lowmemorykiller/parameters/minfree

2011-10-14 Thread Mark Murphy
This is a firmware question, so you need to ask it over on one of the Google Groups listed at http://source.android.com. This list is for developing applications with the Android SDK. On Fri, Oct 14, 2011 at 12:23 PM, vishnu vardhan reddy madduri vishnu.madd...@gmail.com wrote: Dear Google Team

[android-developers] Button not clickable while playing animation

2011-10-14 Thread buda gavril
I have a button which I need to be able to click on it white it is playing an animation. here is the full source code: http://pastie.org/2695839 Thanks -- 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] Re: how to insert image into listview and text also in list view

2011-10-14 Thread Jeremy Dagorn
Hi, Look at this : http://developer.android.com/reference/android/widget/ListView.html So the process is simple, create a layout containing your list view element. Create another layout called listview_raw for example, which will contain an imageView and a textView. You have to create an

Re: [android-developers] Button not clickable while playing animation

2011-10-14 Thread Justin Anderson
Gee that's a really cool idea... thanks for telling us about it. Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Fri, Oct 14, 2011 at 11:01 AM, buda gavril dlbudagav...@gmail.comwrote: I have a button which I need to be able to click on it white it is

[android-developers] Install an android app on Google TV

2011-10-14 Thread dillipk
Hello, How do I install my app on Google TV.? It is written android 2.3 SDK. My System Config: Windows XP Pro Ecplise SDK Platform Android 3.2 API 13, revision 1 Interestingly, I am not able to install Google TV add-on on my PC. AVD manager saying Some packages were found but are not

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

2011-10-14 Thread Jeremy Drake
On Oct 14, 7:01 am, Mark Murphy mmur...@commonsware.com wrote: I can definitely reproduce the problem. It feels like a bug with the Android Compatibility Library. If I switch your sample to use API Level 11 and the built-in fragment implementation, it works successfully, at least in the

[android-developers] Re: Camera application

2011-10-14 Thread mjmeyer
Without any logcat output or code as Fina suggested, I'd guess that you are setting a some specific camera parameter value that a particular model just doesnt support. There are wide ranges of camera hardware out there and I see many people do things like assume that 640x480 preview sizes are

Re: [android-developers] SQLite slow

2011-10-14 Thread John Goche
On Thu, Oct 13, 2011 at 1:47 AM, Studio LFP studio@gmail.com wrote: If you aren't, try using transactions: dbHandle.beginTransaction(); lReturn = dbHandle.insert( sTable, null, cvEntry ); // Update and delete here also dbHandle.setTransactionSuccessful(); dbHandle.endTransaction();

Re: [android-developers] Re: please help: broadcast receiver does not execute code

2011-10-14 Thread John Goche
Hi, No, it's definitely skipping it because the intent is launched. Isn't that strange? Seems like broadcast receivers behave somewhat oddly in general, like when I was sending it a parcel instead of a bundle and it would not run properly. I had to move the alarm setter code into the launched

[android-developers] Still time to save $400 on AnDevCon II Nov 6-9.

2011-10-14 Thread Nathan
I will be speaking at AndevCon II, Nov 6-9, on the subject of 'Marketing for Independent Android Developers. You can save $200 on the price of the conference by using the discount code 'Mellor', and another $200 for registering by October 21st.

[android-developers] Re: Android source code not available at official site

2011-10-14 Thread blake
I, for one, am not very amused. I would very very much like to get a copy of froyo... -blake On Oct 13, 7:25 am, apalsson andreas.pals...@gmail.com wrote: Actuallyhttp://android.git.kernel.org/is up again, but still dreams of electric sheep. No repo yet available. But it's a promising start

[android-developers] SIP Registration problem.

2011-10-14 Thread Lakshman Bana
Hi, I'm having two problems with SIP in android 2.3.3 1.) If I call setPort on SIPProfile.Builder then my To and From headers is constructed with portnumber. example: sip:12223334...@open-ims.test:4060 When SIP REGISTER goes to OpenIMSCore platform it could not handle it. I

Re: [android-developers] Should ro.EMPTY_APP_MEM always be same as arguments in write /sys/module/lowmemorykiller/parameters/minfree

2011-10-14 Thread Dianne Hackborn
This is all rewritten in ICS. On Fri, Oct 14, 2011 at 9:23 AM, vishnu vardhan reddy madduri vishnu.madd...@gmail.com wrote: Dear Google Team and all, Is it really needed that values setprop ro.FOREGROUND_APP_MEM 2048 setprop ro.VISIBLE_APP_MEM 3072 setprop ro.PERCEPTIBLE_APP_MEM

[android-developers] Re: Android source code not available at official site

2011-10-14 Thread Chris
Because open source is here for your amusement.. Trade you my copy of froyo for your copy of honeycomb? Oh, wait -- 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

Re: [android-developers] sorting the listview

2011-10-14 Thread Subin Sebastian
@Vani, It is not clear that what data you are adapting to the ListView. Anyway, use some standard algorithms to sort yourData by date just before a line something like this in your code appears. yourListView.this.getListView().setAdapter(new yourAdapter(yourListView.this, R.layout.your_row,

[android-developers] Re: Two menu buttons in Honeycomb?

2011-10-14 Thread Darren K
I discovered the error, with some help from StackOverflow. Make sure you didn't forget to put android: in front of targetSdkVersion in the manifest. That was my error. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

Re: [android-developers] SQLite slow

2011-10-14 Thread Studio LFP
Glad to hear you got at least a little speed out of the transactions. On making sure your objects are in sync, I can understand the reasoning behind this. What I tend to do is drop database modifications in a thread and also updates my objects at the end of that thread and then trigger a

[android-developers] Re: Should ro.EMPTY_APP_MEM always be same as arguments in write /sys/module/lowmemorykiller/parameters/minfree

2011-10-14 Thread vishnu vardhan reddy madduri
Hi Dianne Hackborn, Do you mean to say setprop ro.FOREGROUND_APP_MEM 2048 setprop ro.VISIBLE_APP_MEM 3072 setprop ro.PERCEPTIBLE_APP_MEM 4096 setprop ro.HEAVY_WEIGHT_APP_MEM 4096 setprop ro.SECONDARY_SERVER_MEM 6144 setprop ro.BACKUP_APP_MEM 6144 setprop

[android-developers] Re: Inyect Assistance data to the GPS

2011-10-14 Thread nunojpg
How does the application https://market.android.com/details?id=com.eclipsim.gpsstatus2 download new A-GPS data and checks it's age? Is it fake? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to