[android-developers] UTF encoding of SMS

2009-11-15 Thread Jamie
Does Android encode SMS using UTF-7 or UTF-8? I'm developing an app that interfaces with an SMS processing backend that uses UTF-7. If Android uses UTF-8, is there a way to programmatically use UTF-7 instead? Thanks, Jamie -- You received this message because you are subscribed to the G

[android-developers] Re: How to preserve old Db table, while adding new table columns for new version of app?

2009-11-16 Thread Jamie
Select and store all data currently in the db. Wipe the old tables and create the new ones. Insert the old data into the new database with some default values for new columns where old data is not available. On Nov 16, 8:17 am, "jagtap.jj" wrote: > Hello everybody > > Is there way for Android o

[android-developers] Re: How to create a project in android

2009-11-16 Thread Jamie
This topic is better suited on the Android-Beginners Group: http://groups.google.com/group/android-beginners On Nov 13, 3:09 pm, Dhir wrote: > hi all,, > > plz help me out... > actually i'm  using eclipse and creating an android project properly. > bt  in package explorer the folder is showing a

[android-developers] Re: Market Apps Not Really Protected

2009-02-20 Thread Jamie
Essentially, any rooted phone can pull apps using adb. Apparently there is no security tied to google accounts, phone id, or anything, its simply a lock on folder access if you don't have root access. Interesting, indeed!! --~--~-~--~~~---~--~~ You received this me

[android-developers] html parsing and libraries

2008-12-19 Thread Jamie
I am wanting to parse through some HTML with minimal code so I went looking for some libraries to do so. How do libraries work with android? If I use libraries outside of Java and Android SDK can those be implemented? Are they compiled into the project then executed on the phone? Anyone know

[android-developers] Re: html parsing and libraries

2008-12-20 Thread Jamie
> If you are building with Eclipse, AFAIK, follow the standard Eclipse > procedures for incorporating a JAR. I tried importing the JAR from the htmlparser open source project. Eclipse gives an error and doesnt import the library. > If the project is open source, though, consider downloading the

[android-developers] Re: How to track menu navigation focus changes?

2009-01-03 Thread Jamie
For more on the rationale behind touch-mode and ListView focus see: http://android-developers.blogspot.com/2008/12/touch-mode.html --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post t

[android-developers] Re: Help How to lazy load images

2009-01-07 Thread Jamie
what about putting each download in its own thread?? doesnt this speed things up on the processing side?? Download is still limited to connection speeds, but you should be able to use a Runnable() in threads to process each one individually. On Jan 7, 7:55 am, Mike Reed wrote: > We don't supp

[android-developers] XML Layout Ordering Problem

2009-01-08 Thread Jamie
Here is the layout XML: http://schemas.android.com/apk/res/android"; android:id="@+id/scroll" android:background="#699864" android:layout_width="fill_parent" android:layout_height="wrap_content" android:scrollbars="vertical" android:visibility="vis

[android-developers] Re: XML Layout Ordering Problem

2009-01-09 Thread Jamie
> Try to change the height of the LinearLayout from fill_parent to wrap_content. This didn't work. I tinkered with both the LinearLayout parameters and ScrollView but haven't found the solution. Thanks for the quick response!! --~--~-~--~~~---~--~~ You received t

[android-developers] Re: REST Web Services and Android

2009-01-09 Thread Jamie
Thanks for the slides!! Do you know of any current resources for accessing web API's (examples, explanations, etc.)? The android implementation has undergone some changes and most resources I have found do not work any longer. Also, I am not familiar with Web protocol, so documentation is unclea

[android-developers] Re: XML Layout Ordering Problem

2009-01-09 Thread Jamie
> The height of ScrollView should be fill_parent, and the height of > LinearLayout should be wrap_content. > > Does this work? > > If not, try to rebuild your project in Eclipse (sometimes changes in > xml files are not immediately updated). This did not work. Not sure what the problem is, I do n

[android-developers] Re: REST Web Services and Android

2009-01-09 Thread Jamie
Thank you sooo very much!! --~--~-~--~~~---~--~~ 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 emai

[android-developers] Re: XML Layout Ordering Problem

2009-01-09 Thread Jamie
> Do you have extremely large images? they are 480x360, is that too large?? > Set image sizes to "30dip" for height and weight, or all images and > texts to wrap_content everywhere. > > > So, just to be sure, you see: > [image] > [image] > [image] > [text] > [text] > [text] > > instead of > [ima

[android-developers] Re: Bug - my ("desktop") screen won't scroll sideways

2009-01-12 Thread Jamie
> I scrolled my screen so I can see the left side of the screen, played > with the device a bit (say 10 mins) and wanted to go back to the > central view - I couldn't scroll - not 1 inch, not 1 mm, neither to > the left, nor to the right. > Luckily, after I restarted the phone I am now able to scr

[android-developers] Re: Future of Android

2009-01-23 Thread Jamie
This is a forum for discussion of using the SDK to build applications for Android. Also, Android is a continually-in-progress open-source software stack. As such, you should expect new features incrementally over time, when they have been properly submitted, reviewed, finalized, and released. I

[android-developers] Re: Want to help us port our iPhone app to Android?

2009-01-30 Thread Jamie
cool app, im game. email specifics: jamie.hu...@gmail.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 unsubscr

[android-developers] Re: Connecting multiple phones

2009-08-26 Thread Jamie
Does bonjour actually support sending data between two devices or just a device and a PC? There is no way to implement a P2P protocol because the wi-fi doesn't support connecting to another devices via wi- fi, is this correct? What are the options to a device with root access, are they different

[android-developers] Web App

2008-11-09 Thread Jamie
Fellow Android Devs, Im new to android!! wondering where I might start (after the intro tutorials), to develop an app that pulls info. from the web for the user. It may be via rss, web page, etc. Which part of the API does this work?? thanks in advance!! --~--~-~--~~~-

[android-developers] Re: How to put a dialog box to another activity's foreground?

2008-11-25 Thread Jamie
Anyone? On Nov 24, 5:29 pm, "android dev" <[EMAIL PROTECTED]> wrote: > Hi, > > I have an activity which listens to certain event from another application. > In onReceive, I fire a dialog box.  How do I get the dialog box to appear on > top of the other application?  What's happening is that the d

[android-developers] SubMenu MenuItem icon?

2008-12-10 Thread Jamie
Is it by design that we can't set icons in a submenu's menu item? SubMenu sub = menu.addSubMenu(...); MenuItem item = sub.add (...); item.setIcon(...); <-- icon does not show up Any Idea? Thanks, J --~--~-~--~~~---~--~~ You received this message because you are

[android-developers] Any way to intercept power button presses when running a service?

2010-02-11 Thread Jamie
any advice! Jamie -- 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.

[android-developers] Android 2.1 Sensors with screen off

2010-02-15 Thread Jamie
forum and it appears this was an issue previously which was fixed in Cupcake. Is this a new bug in 2.1 or is this a limitation of the handset (or even a deliberate design decision?) Thanks in advance, Jamie -- You received this message because you are subscribed to the Google Groups "An

[android-developers] Re: Disable 2g and 3g networks

2009-10-30 Thread Jamie
GPS receiver is independent of the cell receiver. GPS can be turned on while airplane mode is ON. Good luck!! On Oct 30, 10:59 am, Anton Pirker wrote: > Hi all! > > I am developing an application that is used for a sort of tournaments. > The requirements are that if the application is running

[android-developers] Bluetooth connect not working

2010-02-26 Thread Jamie
I am trying to establish a connection to another Bluetooth device on my Nexus One (2.1) with the following code, which occurs when on the broadcast receiver when a device is found. BluetoothDevice device = (BluetoothDevice) intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE); BluetoothSocket b

[android-developers] Maps API v2 and WRITE_EXTERNAL_STORAGE permission

2013-01-08 Thread Jamie
his permission is mandatory when using the Maps V2 API and will bad things happen if I don't include it? Since the mapping functionality is not a key feature of the application I am more than happy to take any hit with regards to lake of map cacheing. Many thanks, Jamie -- You received this m

Re: [android-developers] Maps API v2 and WRITE_EXTERNAL_STORAGE permission

2013-01-08 Thread Jamie
p to them! Cheers, Jamie On Tuesday, January 8, 2013 12:28:12 PM UTC, Mark Murphy (a Commons Guy) wrote: > > I haven't tried withholding that permission. You are welcome to give > it a shot. I see three possible outcomes: > > 1. You crash immediately, just as you will if y

[android-developers] Re: Signup for C2DM ?

2010-07-23 Thread Jamie
I'm kinda of glad that I"m not the only one in this boat. But still sad that the app that I am writing depends on C2DM for it's core function and I can't go any further without being on this whitelist. I'd like to know what's going on. Even a "thanks for your request. you are number 1,423,423 in

[android-developers] Re: Andriod Email Flaw

2010-07-23 Thread Jamie
I've noticed this in 2.2 as well. It used to work though. But now when I'm on 3G and then switch to WiFi my email becomes inaccessible. I'm assuming because, as you stated, it's not closing the connection it initiated over 3G. On Jul 23, 6:47 am, Shulbert wrote: > Hello I have noticed a flaw in

[android-developers] What error message are you getting from your not-yet-whitelisted C2DM application?

2010-07-23 Thread Jamie
one else getting when they try and send a C2DM message and they're not on the whitelist? The QuotaExceeded made sense because if I'm not on the whitelist then my quota should be 0. Has anything changed? Jamie -- You received this message because you are subscribed to the Google Group

[android-developers] Facebook Android SDK randomly stopped working

2011-03-02 Thread Jamie
I have integrated Facebook into my Android app and was able to post to my profile wall. After a few days, I go to do it again and I get "An Error has occurred with MyApp. Please try again later." Does anyone know why this is happening? It was working fine before. -- You received this message bec

[android-developers] $5K for Lead Android Developer at Box

2011-03-07 Thread Jamie
s the bill, please send them my way or email referr...@box.net and mention my name. There's a $5K referral fee. While you're at it, here are other engineering/ops roles we need to fill (same referral fee applies): http://www.box.net/company/careers/job_openings. Thanks in advance! J

[android-developers] Re: Problem with giving the SDK path in eclipse for SDK 1.5 pre in windows

2009-04-13 Thread Jamie Williams
is there a good IRC channel for android On Mon, Apr 13, 2009 at 9:42 PM, Anonymous Anonymous < firewallbr...@googlemail.com> wrote: > http://dl-ssl.google.com/android/ADT-0.9_pre.zip > > > On Tue, Apr 14, 2009 at 10:10 AM, for android wrote: > >> When I do a click on update on my previous version

[android-developers] Re: Early Look Android 1.5 SDK

2009-04-13 Thread Jamie Williams
im new at this so should i stay with 1.1 or move to 1.5 On Mon, Apr 13, 2009 at 9:19 PM, Dianne Hackborn wrote: > A major goal for releases since 1.0 is to not break existing applications > that are using the official SDK. Some times there will be things that > break, unintentionally, so you wil

[android-developers] Re: Underline of TextView

2009-04-13 Thread Jamie Williams
is there a good IRC for android On Mon, Apr 13, 2009 at 9:37 PM, DeRon Brown wrote: > "R.string.your_txt" will return that string. Just set you TextView to > R.string.your_txt. > > > On Mon, Apr 13, 2009 at 11:02 PM, Kaka wrote: > >> >> Then, how to implement this in code? >> >> On Mar 23, 9:10

[android-developers] Re: Problem with giving the SDK path in eclipse for SDK 1.5 pre in windows

2009-04-13 Thread Jamie Williams
On Windows, right click on My Computer, and select Properties. Under the Advanced tab, hit the Environment Variables button, and in the dialog that comes up, double-click on Path under System Variables. Add the full path to the tools/ directory to the path. Example: ;D:\Users\Administrator\Document

[android-developers] Menu Icons

2008-12-15 Thread Jamie L
If there are more than 6 menu items, the "more" menu item will appear, and the rest of the items go to a popup menu. Can we set icons to those menu items? I am not able get the icons to show for those menu items. Please advice. Thanks in advance, J --~--~-~--~~~---~

[android-developers] Re: How to put a dialog box to another activity's foreground?

2008-11-25 Thread Jamie L
Thanks Dianne! On Tue, Nov 25, 2008 at 10:20 AM, Dianne Hackborn <[EMAIL PROTECTED]>wrote: > This is working as intended, please don't try to work around it. Popping > dialogs up on the user from outside of where they are currently working is > an ugly thing to do. > > If you need to get the use

[android-developers] Two questions about Toast

2008-11-25 Thread Jamie L
In the code below, I added a button to the toast, but I am facing two problems. 1. The button is not clickable! onClick is not called when I click on the button. 2. If I replace Toast.LENGTH_LONG with a number 1, the toast does not stay for 10 seconds. Is it by design that you can't add an

[android-developers] Re: Two questions about Toast

2008-11-25 Thread Jamie L
My application listens to certain event from another app. As soon as the event is received, I want to displays a dialog or a toast to notify the user and give users a few action choices with buttons. We can't display a dialog because it doesn't pop up in the foreground over the other app. Toast

[android-developers] Re: Two questions about Toast

2008-11-25 Thread Jamie L
you can put buttons on notification? On Tue, Nov 25, 2008 at 4:55 PM, Romain Guy <[EMAIL PROTECTED]> wrote: > > You can use notifications :) (If it makes sense, that is) > > On Tue, Nov 25, 2008 at 4:52 PM, Jamie L <[EMAIL PROTECTED]> wrote: > > My application

[android-developers] Invitation to upload software to Phoload

2008-10-17 Thread Jamie McDonald
/developer Thanks for listening, Jamie McDonald -- www.phoload.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@googlegro

[android-developers] Re: Android Market - How to Submit?

2008-10-22 Thread Jamie McDonald
I guess now that the G1 has hit the shops it can't be long before we hear something more about the Android Market. In the meantime, we are also seeing quite a few developers uploading their Android software to Phoload... Jamie www.phoload.com On Oct 22, 10:47 am, Al Sutton <[EMAIL P

[android-developers] App testing - Nexus One / Droid

2010-04-13 Thread Jamie McDonald
I recently released the first version of my Android application. Could somebody test it on an Android 2.1 device? It works as expected on my HTC Hero (Android 1.5). There was initially a bug for Android 2.1 devices but I believe it is now resolved. It is published on Market as Sudoku Capture. --

[android-developers] Users being unable to perform in-app purchases on Android TV.

2016-11-17 Thread Jamie Furnaghan
Hi all, As of this morning we're receiving reports of users being unable to perform in-app purchases in our App. We've reproduced this locally in our own app, and we're seeing the same behaviour in other Android TV apps that have in-app billing. When the IabHelper tries to start the purchase a

[android-developers] Disappearing downloads

2010-07-16 Thread Jamie McDonald
I've read about this problem with the Android Market Developer Console before but I was under the impression that it had been resolved. I check my Market stats roughly daily and this morning there were about a thousand less total downloads across my two apps. Is anybody else experiencing this? --

[android-developers] Re: ALL DEVELOPERS PIRATED APPLICATION ALL OVER!

2009-07-23 Thread Jamie Williams
I'm new to this whole thing about being a developer but, if you think making your app hack safe and, your app's are not going to lose you your user base. Then say a hello to the new world order of android. Stop bitching and think of it as contributing to your community. I don't steel but I don't lo

[android-developers] Re: ALL DEVELOPERS PIRATED APPLICATION ALL OVER!

2009-07-23 Thread Jamie Williams
The only safe app is one that has a service connected to it. So if you are that much in a Tiff about it have a free or charged dummy or real service connected to your app and host that service too. ix3.com has hosting for 12 dollars a year stop the excuses and blaming. god I hate whiners people rea

[android-developers] Re: ALL DEVELOPERS PIRATED APPLICATION ALL OVER!

2009-07-23 Thread Jamie Williams
> The only safe app is one that has a service connected to it. So if you are > that much in a Tiff about it have a free or charged dummy or real service > connected to your app and host that service too. > ix3.com > 3ix.com has hosting for 12 dollars a year stop the excuses and bla

[android-developers] Using loadData() rather than loadUrl() and intercepting urls?

2009-08-19 Thread Jamie Bennett
em is that the server can send back dummy urls which are meant to be handled by the app itself. It seems shouldOverrideUrlLoading() is only available when you do a loadUrl() and not when a loadData() is called. Any idea's how to work around this one? Regards, Jamie. -- http://www.l

[android-developers] Paid In App Purchase to free

2016-09-07 Thread Jamie Sinclair
Tried changing a paid for In App purchase to free for a promotion today, but the console says the price needs to be between a price range. Can I not do this then? Thanks -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To unsubscribe fr

[android-developers] 2 Devices use audio to communicate by netwrok.

2011-03-31 Thread Jamie Lin
I want to make two devices use audio to communicate by network. Is any sample code? I just only make it connect. But I can NOT make one mic recevice voice to the other's speaker. I try it a some days. How can I make it work? Please help. Thank you very much... -- You received this message becaus

[android-developers] Re: 2 Devices use audio to communicate by netwrok.

2011-04-05 Thread Jamie Lin
Sorry... I want it work without sip and sd card.. On Apr 1, 12:59 pm, gjs wrote: > http://developer.android.com/resources/samples/SipDemo/index.html > > On Mar 31, 9:35 pm, Jamie Lin wrote: > > > > > > > > > I want to make two devices use audio to communicat

[android-developers] viewing downloaded ebooks on html

2011-08-29 Thread jamie hough
try to access the same file direct from the file manager, it only opens in code! I don't know if its because my phone is still droid 1.7 or i'm doing something wrong? Also have tried getting html viewer apps (moon+reader-cool reader) and same result. Help wil be very appreciated. Cheers. J