[android-developers] Re: How To Reduce Camera Resolution?

2011-03-08 Thread ko5tik
It is not always possible to set up resolution even if camera offers it. Some implementations refuse settings and behave in unexpected way. ( But this is mostly for higher resoultions ) On Mar 7, 10:56 pm, gjs garyjamessi...@gmail.com wrote: Hi, Query the picture sizes the camera

Re: [android-developers] Question on layouts

2011-03-08 Thread Patrick Mangesius
Thanks so much for your help. It now works exactly what I wanted and I learned really much on layouts :-) ! @Romain: Thanks for clarification on the framelayout. I completely missed its purposed. There are many tutorials on the map, who exactly state that framelayouts are only for displaying one

[android-developers] Re: Gingerbread update on Nexus One

2011-03-08 Thread appel
Just wait and you'll get the update notification again. For me, on my Nexus One, it usually takes two to three attempts until it manages to install updates. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

[android-developers] Re: Start laoding when scroll reaches end

2011-03-08 Thread Doug
You can do these by getting creative with an AbsListView.OnScrollListener attached to your ListView and refreshing its adapter. Doug On Monday, March 7, 2011 1:09:39 AM UTC-8, Abhishek Talwar wrote: Hey guys I am parsing xml and i want that when the scroll is reached to the end then the

[android-developers] Re: how to use normal class object as context?

2011-03-08 Thread Doug
Do with the same thing with your normal class as you are with your Database class: give it an instance of a Context to work with. Doug On Monday, March 7, 2011 3:38:30 AM UTC-8, Hitendrasinh Gohil wrote: hi, i have one database class.in which i have public Database(Context ctx) {

Re: [android-developers] how to use normal class object as context?

2011-03-08 Thread Doug
You can't do that because getApplicationContext is not a static method of Context. You need an instance of a Context to call that method, and all it does is return the Context instance that is the Application object for the app (as opposed to, say, an Activity or Service instance). Doug On

[android-developers] Re: How to save a bitmap without compress??

2011-03-08 Thread Doug
PNG is lossless, so you shouldn't be losing anything from the modified image. You might want to make sure you are actually modifying the image the way you expect and that it's writing to the correct file. Doug On Friday, March 4, 2011 12:08:07 PM UTC-8, Chi-Hao wrote: Hello everyone. My

[android-developers] Re: H.264 Encoding Not Working

2011-03-08 Thread Doug
Does your device support h264 encoding? http://developer.android.com/guide/appendix/media-formats.html Spoiler: the answer is no since it does not run Android 3.0. Doug On Friday, March 4, 2011 3:48:20 PM UTC-8, Tom wrote: Hello, I have an unresolved problem with h.264 encoding on my HTC

[android-developers] Re: Check permissions

2011-03-08 Thread b_t
Ping. Can somebody help? On Mar 4, 9:29 am, b_t bartata...@gmail.com wrote: Hi, thank you for this suggestion A put the following line in the manifest of my content provider addon (MYPERMISSION is replaced by the correct value): permission android:name=MYPERMISSION

Re: [android-developers] Re: Check permissions

2011-03-08 Thread Kostya Vasilyev
Depending on where you put this, it may just be a permission declaration only. That you can still access the component from another app without using the permission kind of hints at that as well. I think another required piece is to use the declared permission to secure the content provider, and

[android-developers] UnknownHostException

2011-03-08 Thread vani reddy
Hi , Why do i keep getting UnknownHostException when i run application in emulator and device,Please tell me how to resolve the asap,its too urgent.. -- Regards, Vani -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

[android-developers] Re: How to define a CUSTOM font (Typeface) in application wide XML Theme/Style?

2011-03-08 Thread Faboom
Got the same issue... Has anyone found a solution yet? -- 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] Honeycomb orientation

2011-03-08 Thread limtc
I encountered something strange in development using the emulator. I wanted my app to start and only work in landscape mode, but even if I put in the android:screenOrientation=landscape, my app still starts in portrait mode. I have set the minimum SDK version to 11. What could be the problem?

[android-developers] Re: Array list to spinner OR json Array to java Array ?

2011-03-08 Thread Samsung Galaxy
Ok, I did it and Now i am getting a Json array from server and converting it simply into Java Array to used for Spinner. here is the code for future reference. JSONArray jsonArray = new JSONArray(json_string); ListString items = new ArrayListString();

Re: [android-developers] UnknownHostException

2011-03-08 Thread Kostya Vasilyev
Did you add internet permission to the manifest? 08.03.2011 12:49 пользователь vani reddy vani.redd...@gmail.com написал: Hi , Why do i keep getting UnknownHostException when i run application in emulator and device,Please tell me how to resolve the asap,its too urgent.. -- Regards, Vani

Re: [android-developers] UnknownHostException

2011-03-08 Thread vani reddy
yes,and now its working in emulator but its not working on device. i am getting the below err msg java.net.UnknownHostException: Host is unresolved: beemediahive.sitesystems.ca:80 at java.net.Socket.connect(Socket.java:1037) 2011/3/8 Kostya Vasilyev kmans...@gmail.com Did you add internet

Re: [android-developers] Mount USB pendriveto simulate SD Card functionality

2011-03-08 Thread kiran
Hi, if you want to detect usb as external storage device (sdcard),then you can use the following configuration in the vold.fstab to mount the usb device. dev_mount sdcard /mnt/sdcard auto /devices/platform/musb_hdrc/usb1 and the following configuration in init.rc file export

[android-developers] Re: new to android..............

2011-03-08 Thread Antony Keerthy
You can follow that link http://developer.android.com/sdk/index.html after getting the sdk and all, you can follow this link http://android-codes-examples.blogspot.com/2011/02/running-emulator-from-eclipse.html On Mar 4, 8:16 pm, Kailash Adhikari adhi.fr...@gmail.com wrote: hi

Re: [android-developers] UnknownHostException

2011-03-08 Thread vani reddy
In emulator it started working after i referred this http://www.storm-frandsen.dk/jesper/pages/How_to_fix_java.net.UnknownHostException_on_Android.php 2011/3/8 vani reddy vani.redd...@gmail.com yes,and now its working in emulator but its not working on device. i am getting the below err msg

Re: [android-developers] UnknownHostException

2011-03-08 Thread Kostya Vasilyev
Try going to that URL from the device's browser, if you're still having problems, it's not your program, it's how the device and your cellular network are set up. 08.03.2011 13:30 пользователь vani reddy vani.redd...@gmail.com написал: yes,and now its working in emulator but its not working on

[android-developers] Re: Android Market Rank

2011-03-08 Thread Adam Goodchild
Hey, Im afraid ive not had a very good experience from using this. Every application I searched for I was unable to find it, even some of the market leaders in their category. You really need to update the library of applications you are searching, or you need to improve the search feature. On

Re: [android-developers] UnknownHostException

2011-03-08 Thread vani reddy
OK .. 2011/3/8 Kostya Vasilyev kmans...@gmail.com Try going to that URL from the device's browser, if you're still having problems, it's not your program, it's how the device and your cellular network are set up. 08.03.2011 13:30 пользователь vani reddy vani.redd...@gmail.com написал:

[android-developers] Is it possible to write a code from one computer and run emulator in another computer ?.

2011-03-08 Thread Santhosh Kumar
Hi, I have desktop pc (running windows xp) and laptop (running windows 7), the requirement is i want to write a code in laptop and deploy it in desktop ( emulator should run in desktop pc ), and these two computers are connected over LAN. I know that the question is very silly and seems to be

[android-developers] acess google calendar to retrieve events specific to a date

2011-03-08 Thread Gaurav Shah
Hello.. I am trying to access google calendar in android .. I am using google java client api (gdata api not working in android.. tried a lot.. some issue with library ).. I want to access events within a specific date range.. say I want to retrieve all the events inbetween date range

[android-developers] Retrive which activity has started a local service

2011-03-08 Thread Paolo
hi there! I have a single activity that starts a local service. I'd like to know from the service class which activity has called it. Is it possible? I notice the startCommand method has as parameters the intent used to call the service. Is there anything I can do with it for my purpose? Thanks

Re: [android-developers] Retrive which activity has started a local service

2011-03-08 Thread Kostya Vasilyev
Sure, put some extras in the intent or specify an action string - your service will be able to examine those. 08.03.2011 14:23 пользователь Paolo brand...@gmail.com написал: hi there! I have a single activity that starts a local service. I'd like to know from the service class which activity

Re: [android-developers] Best Eclipse Version.

2011-03-08 Thread Neo Apostol
On 3/8/2011 6:28 AM, Nathan wrote: I probably to reinstall Eclipse, so I wanted soem advice on teh best version. I've had 3.4. Some comments from others at Andevcon suggest that performance gets worse with 3.6 and 3.7. So is 3.5 Classic the best ever? Thanks Nathan I think that it's better

[android-developers] Re: Retrive which activity has started a local service

2011-03-08 Thread Paolo
Sorry, maybe my english isn't good enough or I explain not well what I'd like to do... :) I'd like my service knows which activity has started it. I want to have the Activity Object in order to get some variables value into the service. I can't put them into the intent as extras, because they

[android-developers] Installing app from third party site

2011-03-08 Thread Raghav Sood
Hi everyone, I am giving out my app from my website https://www.raghavsood.com. I want to start the installation of the app when the viewer touches the download link. right now it downloads on the computer but when a person from a phone taps it it shows a lot of garbled text. Any ideas or code

[android-developers] Re: Out of memory issue in Android

2011-03-08 Thread lbendlin
quote Romain Guy: Your application uses too much memory. On Mar 3, 6:24 am, ROHIT rohit...@gmail.com wrote: Hi, I am using the byte array for storing the image. I want to store image in binary format back to file. While calculating the length of byte array, i am getting the Out of memory

Re: [android-developers] lockNow() doesnot work as expected on LG ally and Droid X which are verizon devices

2011-03-08 Thread Android JavaME
Hi Dianne, We notice this issue on LG Ally and Motorola droid X devices, we need to make it ask for password we have set, when we do force lock. Please help us in resolving this issue, Thank you Sumanth On Tue, Mar 8, 2011 at 12:05 PM, Dianne Hackborn hack...@android.comwrote: Does this

Re: [android-developers] Honeycomb orientation

2011-03-08 Thread Lim Thye Chean
Thank you! I will give this a try. I am using the default emulator that comes with the SDK - is there any advantage of using the Xoom Skin emulator (if yes, where can I get it)? 在 2011-3-8,下午07:32, leela kissnaa 写道: Hi, i have also faced this kind of problem with xoom skin emulator...

[android-developers] Re: Out of memory issue in Android

2011-03-08 Thread DanH
If you're getting an out of memory condition while CALCULATING the length of the byte array then the problem is on the other side of the keyboard. On Mar 3, 5:24 am, ROHIT rohit...@gmail.com wrote: Hi, I am using the byte array for storing the image. I want to store image in binary format back

[android-developers] Development for XOOM?

2011-03-08 Thread limtc
Should I use the XOOM skin or just create an AVD with Android 3.0 in the SDK? What's the advantage of using the XOOM skin? 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] AVD Settings

2011-03-08 Thread New Developer
How does one go about getting the correct settings for an AVD ? The two I am looking for right now a) the new Galaxy 10.1 b) NotionInk Adam I have tried my best to configure the AVD for the Galaxy, but I'm looking at the quality of the icons that I have used and must say the look very

[android-developers] Re: Unable to use Fragmentation API with android compatibility package

2011-03-08 Thread Harry
I have this same problem. I have imported the library and have edited my Java files to use that instead of the Honeycomb APIs. My only problem is the XML files; The fragment tag doesnt work. I have set the API Level to 4 to make sure that it is not using anything from the Honeycomb SDK so it will

[android-developers] Android developer site is not working?

2011-03-08 Thread Abhilash baddam
Hi, why http://www.developer.android.com is not working. Anybody is having any idea..? -- 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

[android-developers] startMethodTracing() can't open trace files

2011-03-08 Thread OldSkoolMark
I looked at the related posts, but my problem seems more basic. Full path, or no path, file extension or not, I get a Unable to open trace file '/sdcard/traceit.trace': Permission denied error when I run on the emulator. Do I need to 'prepare' the emulated sd card? import android.app.Activity;

Re: [android-developers] Android developer site is not working?

2011-03-08 Thread Neo Apostol
On 3/8/2011 3:02 PM, Abhilash baddam wrote: Hi, why http://www.developer.android.com is not working. Anybody is having any idea..? -- 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: Packaging an App and Widget in one APK

2011-03-08 Thread Jake Colman
Can anyone recommend an app that I can download from the MarketPlace that implements a dummy activity that simply tells you that this app is really a widget, here is how to install it? I just want to see a few exmaples of how other handled this problem. I'm getting tired of those I downloaded

[android-developers] Changing contacts to phone-only (unsynched)

2011-03-08 Thread HippopotamusMan
I notice in 2.3 that I can interactively choose to make a new contact phone-only (unsynched). Is there a programmatic method for doing this to existing contacts? In other words, I want to traverse the list of contacts and change each one (or a subset of them) to be phone-only. Thanks in advance

Re: [android-developers] Re: Help with Location Updates

2011-03-08 Thread Mark Murphy
On Mon, Mar 7, 2011 at 11:10 AM, Jake Colman col...@ppllc.com wrote: MM == Mark Murphy mmur...@commonsware.com writes:   MM On Mon, Mar 7, 2011 at 8:55 AM, Jake Colman col...@ppllc.com wrote:   1) Why would getBestProvider return null?   MM GPS is not POWER_LOW, AFAIK.    Shouldn't it

Re: [android-developers] Android developer site is not working?

2011-03-08 Thread Florian Rohrweck
http://www.developer.android.com try it without the www http://developer.android.com ;) -- 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,

Re: [android-developers] Android developer site is not working?

2011-03-08 Thread Mark Murphy
It's also experiencing some 500 errors in general. I would use the local copy of your documentation, installed with your SDK, for a bit until they sort out the server woe. On Tue, Mar 8, 2011 at 8:48 AM, Florian Rohrweck f.rohrw...@gmail.com wrote: http://www.developer.android.com try it without

[android-developers] Re: How do i simply hit a remote php URL?

2011-03-08 Thread Aisthesis
this can be improved a little imo, but it should get you going: http://www.aviransplace.com/2008/01/08/make-http-post-or-get-request-from-java/ On Mar 6, 5:23 am, chat2joe chat2...@gmail.com wrote: Hey guys, Sorry if this is a stupid question, I'm new to android and JAVA and have a project

[android-developers] Re: Android Market Rank

2011-03-08 Thread kernelpanic
why does an app like this need the permission to Read device status and identity? On Mar 7, 10:43 pm, ravishi ravish...@gmail.com wrote: Hi all, I just released a free app, called Android Market Rank that let's you find an app's elusive android rank.  You can see exactly what an app's

[android-developers] usb driver xoom

2011-03-08 Thread J Handal
Hi Installed the xoom motorola in windows vista ,eclipse galileo. I have the google usb driver package ,revision 4. Debugging mode on in the tablet. But running the samples demo 3.0,don't choose the running device(is not there) Some idea? -- You received this message because you are

[android-developers] problem with updating widget from activity and vice-versa?

2011-03-08 Thread Hitendrasinh Gohil
hi, i am newbie to android. i have one mediaplayer class,one mediaplayeractivity class,one service class and appwidget class. my problem is that i am able to update activity from widget but from activity widget is not updated properly. below code i m using in my activity class to update widget.

[android-developers] Re: Camera startPreview() failed on Nexus S with Gingerbread

2011-03-08 Thread Paolo
I guess the problem is that Nexus S has two cameras (front and back). With Froyo I can't manage this situation. I expect that Android use the back one without problem with the same code I use for Froyo, The startPreview() faild and I don't undestrand why. If I run the same app on a Nexus One

[android-developers] Location of App downloaded from Market

2011-03-08 Thread ramindroid
Hi, I have downloaded a app Location Spoofer from market on my device. Now I need .apk file for the same app. I tried searching in device using Eclipse having DDMS View - File Explorer. System apps are listed under /system/app but i'm not able to see the downloaded apps. Even /sdcard/downloaded is

Re: [android-developers] Location of App downloaded from Market

2011-03-08 Thread Mark Murphy
On Tue, Mar 8, 2011 at 9:09 AM, ramindroid singhramin...@gmail.com wrote: I have downloaded a app Location Spoofer from market on my device. Now I need .apk file for the same app. If the author of that app makes the APK available for separate download, do that. Otherwise, you may be violating

Re: [android-developers] Re: Camera startPreview() failed on Nexus S with Gingerbread

2011-03-08 Thread Mark Murphy
The Nexus S works just fine with camera previews. See: https://github.com/commonsguy/cw-advandroid/tree/master/Camera/Preview https://github.com/commonsguy/cw-advandroid/tree/master/Camera/Picture The first one is just preview, working with the default camera. The second one also takes pictures

[android-developers] Re: Installing app from third party site

2011-03-08 Thread kernelpanic
sounds like a missing MIME type on the server be sure your server knows how to deal with the apk files application/vnd.android.package-archive On Mar 8, 5:59 am, Raghav Sood raghavs...@gmail.com wrote: Hi everyone, I am giving out my app from my websitehttps://www.raghavsood.com. I want to

[android-developers] Map API Key is not working generated through signup Certificate

2011-03-08 Thread Deepak Kumar
Hi All, I have generated the Map API key from MD5 fingureprint of signing certificate.But its not working.I have generated Map API Key from debug certificate that works fine. Even I have properly created keystore by exporting the application and then used those

Re: [android-developers] LinearLayout problem

2011-03-08 Thread TreKing
On Thu, Mar 3, 2011 at 2:14 AM, Bruno bruno.h...@gmail.com wrote: but when i do this my A component take all the screen. If you tell a view to FILL_PARENT, it will do exactly that and fill it's parent, eating up all the space its parent occupies. If you want what you describe, use

Re: [android-developers] Using Droid-fu

2011-03-08 Thread TreKing
On Wed, Mar 2, 2011 at 10:55 PM, Marco Rodriguez-Suarez marsu...@gmail.comwrote: Any help would really be appreciated! I am about ready to give up on the droid-fu libraries and just use the regular AsyncTask . Does this library not have a dedicated site / forum? That would be a more

Re: [android-developers] usb driver xoom

2011-03-08 Thread Mark Murphy
Download the XOOM drivers. http://www.motorola.com/Support/US-EN/Support-Homepage/Software_and_Drivers/USB-and-PC-Charging-Drivers On Tue, Mar 8, 2011 at 9:05 AM, J Handal jhand...@gmail.com wrote: Hi Installed the xoom motorola  in windows vista ,eclipse galileo. I have the google usb driver

Re: [android-developers] Re: Android Market Rank

2011-03-08 Thread Justin Anderson
When I first launched the app, it gave a dialog that said Checking game version. This makes no sense whatsoever as this app is not a game. On Tue, Mar 8, 2011 at 6:53 AM, kernelpanic j.m.roya...@gmail.com wrote: why does an app like this need the permission to Read device status and identity?

Re: [android-developers] Android developer site is not working?

2011-03-08 Thread Abhilash baddam
Yes its working now. Previously sometime it shows Error 500. Now its working. On Tue, Mar 8, 2011 at 7:20 PM, Mark Murphy mmur...@commonsware.com wrote: It's also experiencing some 500 errors in general. I would use the local copy of your documentation, installed with your SDK, for a bit

Re: [android-developers] Map API Key is not working generated through signup Certificate

2011-03-08 Thread Mark Murphy
My guess is that you did not sign the APK with the custom signing key. On Tue, Mar 8, 2011 at 9:23 AM, Deepak Kumar deepak.kumar...@gmail.com wrote: Hi All, I have generated the Map API key from MD5 fingureprint of signing certificate.But its not working.I have generated Map

[android-developers] A Cautionary Tale: Backup your Keystore

2011-03-08 Thread hoyski
I had a frantic and terrifying couple of hours the other night looking for my keystore file. A few months ago I restructured my workspace and source directories and unwittingly deleted the keystore used to sign my app, something I was completely unaware of until I went to sign the latest release

[android-developers] Re: A Cautionary Tale: Backup your Keystore

2011-03-08 Thread Maps.Huge.Info (Maps API Guru)
Just send it to yourself in an e-mail and then archive the message. That way it will be stored in the cloud. It would be very unlikely that it would be lost on your machine and the cloud simultaneously. It would also be a good idea to check periodically to see if that e-mail is still in your

Re: [android-developers] A Cautionary Tale: Backup your Keystore

2011-03-08 Thread Mark Murphy
On Tue, Mar 8, 2011 at 9:45 AM, hoyski hoy...@gmail.com wrote: I may even print out a copy of a hexdump as the ultimate hardcopy backup. U...there's a fairly recent invention called fire that might not make a paper backup so ultimate. :-) More seriously, you definitely want to back up your

[android-developers] Re: Android Market Rank

2011-03-08 Thread Maps.Huge.Info (Maps API Guru)
Market rank can change depending on a number of factors such as country, carrier and even device. I've seen differences of as much as 20 positions depending on device alone. Country can really wreck havoc on position as the market filters out apps that aren't permitted for that area. I'm curious

Re: [android-developers] Re: Android Market Rank

2011-03-08 Thread Nikolay Elenkov
On Wed, Mar 9, 2011 at 12:35 AM, Maps.Huge.Info (Maps API Guru) cor...@gmail.com wrote: I'm curious as to why the permissions for this app requires the following permissions: READ SENSITIVE LOG DATA READ PHONE STATE AND IDENTITY I wouldn't even consider downloading this app with these

[android-developers] How many of you are creating promotional videos for your app?

2011-03-08 Thread Chris Stewart
Morning everyone, I'm working on more and more complex features to my main app and I'm considering putting together a video of my application to walk through all of the features, highlighting those that are more involved. Especially with the addition of this field in the Android Market, it seems

Re: [android-developers] A Cautionary Tale: Backup your Keystore

2011-03-08 Thread Nikolay Elenkov
On Tue, Mar 8, 2011 at 11:45 PM, hoyski hoy...@gmail.com wrote: I knew all of the inputs I'd used to create the keystore so I thought there may be some way to recreate it. Searching Google I found that the answers fell into two categories: Dude, you're screwed and Dude, you're [expletive

Re: [android-developers] Re: Retrive which activity has started a local service

2011-03-08 Thread Justin Anderson
AFAIK, there isn't really a good way to do that. One possible workaround would be to write the data to SharedPreferences in your activity and read that data from SharedPreferences in your widget... On Tue, Mar 8, 2011 at 4:53 AM, Paolo brand...@gmail.com wrote: Sorry, maybe my english isn't

Re: [android-developers] How many of you are creating promotional videos for your app?

2011-03-08 Thread TreKing
I have not and would be interested to hear from those that have as well. My biggest issue is spending time to make a video, then going in and adding more features that then basically render the video obsolete.

Re: [android-developers] A Cautionary Tale: Backup your Keystore

2011-03-08 Thread Justin Anderson
* If you can prove you are you to the Android market (Google account authentication, phone call verification, show up in person, etc) you should be able to replace the key/certificate tied to your account. I don't think it's possible with the current security model though.* The only problem

Re: [android-developers] usb driver xoom

2011-03-08 Thread J Handal
Mark, Already downloaded motorola usb drivers,yes able to transfer flies,pictures from PC to XOOM. My problem is when running samples from demo fountain,notepad ,etc .Can not target manual ,not able to choose a running android device 3.0. THX -- You received this message because you are

Re: [android-developers] Re: Android Market Rank

2011-03-08 Thread Nikolay Elenkov
On Wed, Mar 9, 2011 at 12:45 AM, Nikolay Elenkov nikolay.elen...@gmail.com wrote: On Wed, Mar 9, 2011 at 12:35 AM, Maps.Huge.Info (Maps API Guru) cor...@gmail.com wrote: I'm curious as to why the permissions for this app requires the following permissions: READ SENSITIVE LOG DATA READ

Re: [android-developers] How many of you are creating promotional videos for your app?

2011-03-08 Thread Chris Stewart
That's definitely a concern of mine as well. That said, I've done a lot of amateur video work in the past and it's really not all that involved. I think if you spend the time to make a decent script of what you're going to say, how you're going to flow through your app, and stick to that, it's

Re: [android-developers] usb driver xoom

2011-03-08 Thread Kostya Vasilyev
Try the tegra 2 drivers on Nvidia's site, or Google for tegra 2 adb. Oh, and make sure you've enabled adb support on the device (settings - applications - development). 08.03.2011 19:36 пользователь J Handal jhand...@gmail.com написал: Mark, Already downloaded motorola usb drivers,yes able to

Re: [android-developers] Re: Retrive which activity has started a local service

2011-03-08 Thread Kostya Vasilyev
Another way is to make a Singleton type registry, with the activity registering data objects with it, and passing registration tokens to the service (registry tokens should be small, so they could be passed as intent extras). Yet another - since your service is local, you could take advantage of

Re: [android-developers] A Cautionary Tale: Backup your Keystore

2011-03-08 Thread Kostya Vasilyev
Checking the key into a separately hosted, distributed source control system works for me. It's less likely to be hacked into (IMO) because the name of the repository is not public knowledge, unlike email. This also prevents emails to this list like I've lost my source code and have no backup,

Re: [android-developers] usb driver xoom

2011-03-08 Thread Dianne Hackborn
tegra 2 adb? WTF? :) You don't need a special adb, the standard platform one works fine. 2011/3/8 Kostya Vasilyev kmans...@gmail.com Try the tegra 2 drivers on Nvidia's site, or Google for tegra 2 adb. Oh, and make sure you've enabled adb support on the device (settings - applications -

Re: [android-developers] Offer link to particular app in the market from my app?

2011-03-08 Thread Tobiah
That worked nicely. Thanks! On 03/07/2011 02:31 PM, Stephen Lau wrote: Fire off a VIEW intent for: market://search?q=pname:com.google.zxing.client.android and it'll auto-open the Market app to that app with a one-click button to install for the user to hit. Tobiah wrote: I have an app that

[android-developers] Re: Android Market Rank

2011-03-08 Thread ravishi
Thanks for the feedback. I have removed the unecessary permissions from the app and released an update. The only permissions the app now requires are: INTERNET READ_PHONE_STATE ACCESS_NETWORK_STATE Internet is needed so the app can communicate with the database on my server. The other two are

Re: [android-developers] Re: Unable to use Fragmentation API with android compatibility package

2011-03-08 Thread Dianne Hackborn
Please read the comment on FragmentActivity, which points out the limitations of the fragment tag for this implementation. Look at the sample code in API demos for uses of the fragment tag. On Tue, Mar 8, 2011 at 4:55 AM, Harry wildbeatcommunicat...@googlemail.comwrote: I have this same

Re: [android-developers] Re: Android Market Rank

2011-03-08 Thread Justin Anderson
Checking the version is fine... It's just that the text Checking Game Version doesn't make sense since Android Market Rank is not a game. On Tue, Mar 8, 2011 at 10:35 AM, ravishi ravish...@gmail.com wrote: Thanks for the feedback. I have removed the unecessary permissions from the app and

Re: [android-developers] Re: Android Market Rank

2011-03-08 Thread Justin Giles
I can vouch for those permissions being needed by Greystripe. I use them in one of my apps and there's no way around those permissions if you want to use their ads. Thanks for taking the time to clarify things Ravi. On Tue, Mar 8, 2011 at 11:39 AM, Justin Anderson magouyaw...@gmail.comwrote:

Re: [android-developers] Web controller

2011-03-08 Thread TreKing
On Thu, Mar 3, 2011 at 7:16 AM, Cherian Abraham live4damom...@gmail.comwrote: I am sure there should be something like a web controller that i can put on the app. You're probably looking for WebView. Kindly guide me on how to do so. Kindly read the documentation.

[android-developers] Re: java.lang.OutOfMemory decoding Bitmaps

2011-03-08 Thread AlexBonel
Oh, I see. Thanks for explanation, Doug. -- 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] Re: Android Market Rank

2011-03-08 Thread ravishi
On Mar 8, 9:39 am, Justin Anderson magouyaw...@gmail.com wrote: Checking the version is fine... It's just that the text Checking Game Version doesn't make sense since Android Market Rank is not a game. That is another thing I copied from on of my other apps that I forgot to update. Thanks for

Re: [android-developers] Looking for a 1-2 years experienced IOS developer

2011-03-08 Thread TreKing
*[android-developers]* Looking for a 1-2 years experienced *IOS *developer Really? - TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago transit tracking app for Android-powered

Re: [android-developers] Custom Dialog with ListView

2011-03-08 Thread TreKing
On Fri, Mar 4, 2011 at 5:53 AM, dim5b dmpou...@gmail.com wrote: Can anyone point me in the right direction. I am looking for a working tutorial regarding a custom dialog that shows a selectable list. http://developer.android.com/guide/topics/ui/dialogs.html#AddingAList

Re: [android-developers] How to create array object of SharedPreference to store various data

2011-03-08 Thread TreKing
On Fri, Mar 4, 2011 at 2:22 AM, manish manishrajja...@gmail.com wrote: Anybody please reply What reply are you expecting? You laid out what you're trying to do but not what you need help with nor what you have done so far.

Re: [android-developers] date picker and froyo

2011-03-08 Thread TreKing
On Fri, Mar 4, 2011 at 7:05 PM, Doug douglascroc...@gmail.com wrote: it is causing the app to crash when I try to view the date picker with Froyo or the Emulator with version 2.2 A callstack might help.

Re: [android-developers] Re: Android Market Rank

2011-03-08 Thread Justin Giles
I believe AdMob suggests to use the same permissions so they can target ads to specific devices. Yes they do, but you can get by with just the INTERNET permission. Much more favorable to users to only have the INTERNET permission. Most users get scared of the READ_PHONE_STATE permission.

Re: [android-developers] Edit pictures immediately after capturing it on the Camera.

2011-03-08 Thread TreKing
On Sat, Mar 5, 2011 at 9:37 PM, nivla99 zing.al...@gmail.com wrote: I need help here to achieve the above. That's not trivial. You'll have to be a little more specific. Anybody can help? Not with the amount of information you've posted.

Re: [android-developers] Add a menu to image viewer

2011-03-08 Thread TreKing
On Sun, Mar 6, 2011 at 2:52 PM, presci p.c.i...@gmail.com wrote: I want to add a menu to the Image Viewer just like the CROP menu. I don't know what I am doing wrong. The menu doesn't show up. I know for sure I am missing something over here. You can't just inject a menu option arbitrarily

[android-developers] Re: Honeycomb orientation

2011-03-08 Thread Droid
The preview emulator for honeycomb had that bug, so get the latest non-preview emulator. On Mar 8, 9:55 am, limtc thyech...@gmail.com wrote: I encountered something strange in development using the emulator. I wanted my app to start and only work in landscape mode, but even if I put in the

Re: [android-developers] Looking for a 1-2 years experienced IOS developer

2011-03-08 Thread Chris Stewart
TreKing, don't you know that reading is hard? Seriously. /sarcasm -- Chris Stewart http://chriswstewart.com On Tue, Mar 8, 2011 at 1:04 PM, TreKing treking...@gmail.com wrote: *[android-developers]* Looking for a 1-2 years experienced *IOS * developer Really?

[android-developers] Which Mobile Advertising Site?

2011-03-08 Thread Jake Colman
Would anyone mind sharing their experiences with the various Mobile Advertising sites and the pros and cons? Seems like most people use AdMob. Any reason why them over someone else? -- Jake Colman -- Android Tinkerer -- You received this message because you are subscribed to the Google

Re: [android-developers] A Cautionary Tale: Backup your Keystore

2011-03-08 Thread Marcin Orlowski
That said, it would be nice if there were some way to recover from losing your key. Recover it from *your* backup. Name private key is not coincidencial. What you dream of just is plain hole so if you do not backup your vital stuff like sources and pkey then you are not just brave. You simply

Re: [android-developers] Which Mobile Advertising Site?

2011-03-08 Thread Miguel Morales
I use admob and mobclix. They're both super easy to integrate. Just google some things like admob vs mobclix and you'll see what people have to say. On Tue, Mar 8, 2011 at 11:48 AM, Jake Colman col...@ppllc.com wrote: Would anyone mind sharing their experiences with the various Mobile

Re: [android-developers] Looking for a 1-2 years experienced IOS developer

2011-03-08 Thread abisai rangel
Let me know what you need i can help you out. On Tue, Mar 8, 2011 at 10:04 AM, TreKing treking...@gmail.com wrote: *[android-developers]* Looking for a 1-2 years experienced *IOS *developer Really?

[android-developers] Re: H.264 Encoding Not Working

2011-03-08 Thread gjs
Hi, Query the CamcorderProfile to see what is supported, then try setting parameters accordingly - http://developer.android.com/reference/android/media/CamcorderProfile.html Regards On Mar 8, 7:53 pm, Doug beafd...@gmail.com wrote: Does your device support h264 encoding?

[android-developers] Re: Honeycomb orientation

2011-03-08 Thread limtc
Hi, I am using the final SDK, so this should be my own problem. I am just not sure why android:screenOrientation=landscape does not work. On 3月9日, 上午2时52分, Droid rod...@gmail.com wrote: The preview emulator for honeycomb had that bug, so get the latest non-preview emulator. -- You received

  1   2   >