[android-developers] Re: Check for new version of applications

2008-11-10 Thread friedger
Hi, we have prepared a release version of the OI Updater. There is no need to send intents, but developers only need to add a meta-data node to the application manifest in order to be handled by the updater. Early feedback welcome! Description: http://www.openintents.org/en/node/136 Download:

[android-developers] Re: List Views and Scroll Views

2008-11-10 Thread Christine
How does the scrollview know that it shouldn't scroll when you're scrolling the listview? Wouldn't this be confusing to the user? Wouldn't it be easier to have two lists, so that the list in the middle pops up when you activate it's row in the super list? On Nov 10, 1:28 pm, for android [EMAIL

[android-developers] Thread instead of Service, is it safe ?

2008-11-10 Thread Derek
Hi, I've an Activity A that starts a Thread T which download a file through HTTP. It works fine. If I close my Activity (back button) while downloading, it is destroyed (onDestroy called) but download Thread still continue and download is completed fine. For testing purposes I've moved my

[android-developers] Re: List Views and Scroll Views

2008-11-10 Thread for android
Actually in the list there is a footer which goes to the next set of items in the list.So the user will not have that confusion.. Wouldn't it be easier to have two lists, so that the list in the middle pops up when you activate it's row in the super list? Could you elaborate more on this... On

[android-developers] Cookie not enabled while using HttpPOST

2008-11-10 Thread AnuR
Hi, I wanted to login to a website thru my application, For that i used DefaultHttpClient client = new DefaultHttpClient(); HttpPost postmethod = new HttpPost(the url to submit the login data and related parametrs); //set header for the postmethos and executed the client, but I am getting the

[android-developers] Virtual Table Problem

2008-11-10 Thread cyntacks
Hi All, I Am experiencing a strange issue regarding the joining of a SQLite3 Virtual Table with a regular table. MY result allways pull back 0 records, but if i run the same sql on the 2 reular tables it pulls back all records. After hours or debugging this I am starting to believe I may not

[android-developers] Re: MediaRecorder on G1

2008-11-10 Thread g1ster
Cool!!! --~--~-~--~~~---~--~~ 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 [EMAIL

[android-developers] Re: Executing ON Target

2008-11-10 Thread Greg
You need to do the following steps. Google for details on each one, you'll find plenty of info: 1. Right click the project and choose Android Tools-Export Unsigned Application Package... 2. Choose a directory and save to create the .apk file 3. Use keytool to generate a self-signed certificate

[android-developers] Re: Virtual Table Problem

2008-11-10 Thread cyntacks
GOT IT!!! This was driving me nuts for HOURS Long story short, SQLite does not validate fields, that is, you can stick an INTEGER into a VARCHAR. My code was inserting an INTEGER into a VARCHAR assuming it would be cast into a VARCHAR but in actuality no conversion takes place, it was just

[android-developers] Re: Virtual Table Problem

2008-11-10 Thread Mark Murphy
cyntacks wrote: GOT IT!!! This was driving me nuts for HOURS Long story short, SQLite does not validate fields, that is, you can stick an INTEGER into a VARCHAR. My code was inserting an INTEGER into a VARCHAR assuming it would be cast into a VARCHAR but in actuality no conversion

[android-developers] PC Crashing

2008-11-10 Thread dave.marsden
I've built a little test app in eclipse, but I now want to test it on the G1 (works fine on the emulator) however whenever I try to run it on the G1 from eclipse, or install it onto the G1 through ADB the PC just reboots. I'm using XP btw. Anybody able to help? Dave.

[android-developers] Re: Check for new version of applications

2008-11-10 Thread G
So version checking needs to be done through an outside resource... Is there an intent we can use to launch the Android Market App directly to the listing for our own app, for when an update is available? On Nov 10, 4:35 am, friedger [EMAIL PROTECTED] wrote: Hi, we have prepared a release

[android-developers] Android Icon Style .psd Kit

2008-11-10 Thread Yuri
Hi All, I think it I would be excellent if Android developers team will develop and upload Icon Style template for the applications in .psd format. Any ideas about that? Thanks, Yuri --~--~-~--~~~---~--~~ You received this message because you are subscribed to

[android-developers] Error while connecting to ms sql server 2005 database

2008-11-10 Thread Nataraaj
Hello guys, I tried to connect to mssqlserver from android application using java.sql.*;. When i tried to run it gives java.util.MissingResourceException error. Help me to run this program. --~--~-~--~~~---~--~~ You received this message because you are

[android-developers] XMPP with Smack and SDK 1.0 success anyone?

2008-11-10 Thread Peter Neubauer
Hi there, it seems Smack GTalk conenctions are not working anymore due to certificate problems. Has anyone been able to successfully get XMPP running again on the SDK 1.0? Thanks for any hints! /peter http://www.oredev.se - Be there or be gone. GTalk:neubauer.peter Skype

[android-developers] Re: no callback to onItemClick() on clicking my ListView

2008-11-10 Thread Sunit Katkar
If I am not mistaken, and I have not yet tried what you are trying to accomplish, then you should attach a click listener for the button and not the list. This is because, like in Java Swing or Windows MFC, the click event occurs on the button. i.e. the event source is the button and not the list.

[android-developers] Re: Need help using hat to track down memory usage

2008-11-10 Thread miguelo
Hello, I've tried with other memory analyzers like JProfiler and Eclipse Memory Analyzer without success :-(. The error was the same, or similar in both cases :-( Memory Analyzer log: !ENTRY org.eclipse.mat.parser 4 0 2008-11-07 18:53:36.265 !MESSAGE Error opening heap dump !SUBENTRY 1

[android-developers] Html parser

2008-11-10 Thread popo37
Hi, I would like to parse an HTML page to retrieve a specific element on it. Do you know any class/library I could use to achieve that ? Note : I already know how to connect to the page and retrieve the html. Cheers. --~--~-~--~~~---~--~~ You received this

[android-developers] List Views and Scroll Views

2008-11-10 Thread for android
I have a complex layout which has many table rows.Something like this: Table Layout TableRow /TableRow TableRow /TableRow TableRow /TableRow TableRow ListView /TableRow TableRow /TableRow TableRow /TableRow TableRow /TableRow TableRow /TableRow /Table Layout Say now I want a

[android-developers] Downloading File

2008-11-10 Thread Faisal Abid
How would i Go about downloading a file and saving it to the sd card. I tried doing URL connection and i get the data of the file by how would i go about saving it now? Is there a better way then URL connection? Thanks, Faisal --~--~-~--~~~---~--~~ You received

[android-developers] Re: MapActivity / MapView causes application to crash at startup

2008-11-10 Thread Frank Trollmann
Hi You might want to look here: http://zackola.com/blog/2008/10/26/android-mapview-permissions-and-prerequisites/#comment-227 this site subsumes (hopefully) all permissions and prerequisites needed for the MapView. - Frank --~--~-~--~~~---~--~~ You received

[android-developers] HTML parser

2008-11-10 Thread popo37
Hi, I am trying to parse an HTML parse to retrieve a specific element on the page ? Could you please tell me which class/library should I use to achieve that ? Thank you. Cheers. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

[android-developers] Re: Land Navigation Application development

2008-11-10 Thread Sam M
Grazi. On Nov 10, 10:45 am, Jerry Elizondo [EMAIL PROTECTED] wrote: Hello Sam: Post your request in the beginners' forum. A couple of weeks ago someone at that forum was asking for ideas for a project. Cheers, Jerry On Mon, Nov 10, 2008 at 9:36 AM, Sam M [EMAIL PROTECTED] wrote: I'm

[android-developers] Re: Developer discount program

2008-11-10 Thread Mark Murphy
John Gruenenfelder wrote: Will there be any sort of hardware discount program available to developers? That would be a question for hardware manufacturers or mobile carriers, as they're the ones selling hardware -- Mark Murphy (a Commons Guy) http://commonsware.com Android Training on

[android-developers] Brazillian developer

2008-11-10 Thread amaral
I would like to join the community of developers. I am fascinated with OS Android. I can contribute a lot with the exchange of experience. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To

[android-developers] Enabling GPS

2008-11-10 Thread Waterflea
Does anyone know how to turn on and off the GPS radio (in the G1)? I've looked everywhere. The 'Toggle Settings' app in the Market can do it but I don't know how. Any ideas? Keith --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

[android-developers] Re: Enabling GPS

2008-11-10 Thread Mark Murphy
Waterflea wrote: Does anyone know how to turn on and off the GPS radio (in the G1)? I've looked everywhere. The 'Toggle Settings' app in the Market can do it but I don't know how. Settings Security Location Enable GPS Satellites -- Mark Murphy (a Commons Guy) http://commonsware.com _The

[android-developers] Re: Land Navigation Application development

2008-11-10 Thread Sam M
I'm sure the paying customers do. It's just a suggestion, and I didn't know where else online to propose it. If no one can help, we'll get along with the pencils, paper, protractors, compasses, and pace counts we've been using for decades! I didn't know what the best place would be to suggest

[android-developers] RingBack Indications

2008-11-10 Thread Anil.
Hi, When is the traffic channel allocated and audio started in the scenario of MO call? How can we handle RingBack Indication from the Network during Alterting according to specfication 3GPP 24.008? Do we have such a support in Android SDK to inform applications? If yes, please provide

[android-developers] Re: best way for a service to send a notice to an activity?

2008-11-10 Thread friedger
Have a look at the Api Demo and check the RemoteService example, especially RemoteServiceCallback. I would say that 1.) is the appropriate solution: Activity A binds to S (and registeres the call back). Then A gets updates when available through callback. Friedger On 9 Nov., 05:11, Don Park

[android-developers] Re: Getting user's phone number

2008-11-10 Thread ole!
Fixed for Problem!! I called T-Mobile customer support and got Ariel (Albuquerque office) She did an OTA (Over-the-air) to my phone that downloaded my cell number onto the SIM card. Then she had me power cycle. It Worked!! Olaf On Nov 10, 9:01 am, ole! [EMAIL PROTECTED] wrote: No such luck

[android-developers] Where do you report email app bugs?...

2008-11-10 Thread JLT
I'm getting the email application to crash whenever I attempt to configure it with a secure IMAP on specific port number. Where do I report this bug? Thank you. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: Getting user's phone number

2008-11-10 Thread ole!
No such luck for me... I think I'll try to call T-Mobile and see what they say. I'l let you all know if I find something. Olaf On Nov 8, 4:24 pm, Mark Robinton [EMAIL PROTECTED] wrote: My number was coming up blank as well but a full power cycle of the phone solved it. Mark On Nov 8,

[android-developers] GPRS in my Android doesn't work .....

2008-11-10 Thread Wang Xiaoguang
I have successfully created a GPRS connection to my ISP, # busybox ifconfig ppp0 ppp0 Link encap:Point-to-Point Protocol inet addr:10.8.232.45 P-t-P:10.8.232.45 Mask:255.255.255.255 UP POINTOPOINT RUNNING NOARP MULTICAST MTU:1500 Metric:1 RX packets:11

[android-developers] how to generate user defined events and handle them.

2008-11-10 Thread Prabhakar
Hi All, I would like to know, how do i generate user defined events and how to handle them? Thanks and Regards, K.Prabhakar --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to

[android-developers] Re: Executing ON Target

2008-11-10 Thread Sunit Katkar
http://code.google.com/android/intro/develop-and-debug.html#developingondevicehardware You can debug your app on the real G1 phone without creating a signed jar, etc. Follow instructions at the given link. - Sunit Katkar http://sunitkatkar.blogspot.com/ - Android OS Tutorials. On Sun, Nov 9,

[android-developers] Re: no callback to onItemClick() on clicking my ListView

2008-11-10 Thread Romain Guy
If you put a focusable View inside a list item, then the list item will not be clickable. You would have to set a click listener on the button for instance. On Sun, Nov 9, 2008 at 10:18 PM, Nickname [EMAIL PROTECTED] wrote: One of my ListView's has a Button view on every item's LinearLayout.

[android-developers] Re: Executing ON Target

2008-11-10 Thread Jon Webb
You can install the signed app directly over the USB using adb. See http://code.google.com/android/intro/develop-and-debug.html#developingondevicehardware. This also allows you to execute in debug mode, etc. -- Jon Webb On Nov 10, 12:31 am, Sunit Katkar [EMAIL PROTECTED] wrote:

[android-developers] Developer discount program

2008-11-10 Thread John Gruenenfelder
Will there be any sort of hardware discount program available to developers? When I started Palm development back in 2000 I was able to get a small to moderate discount on a Palm Vx. I would certainly like to see something like that for Android. I haven't seen any mention of it in the Android

[android-developers] Multicast Support

2008-11-10 Thread Andrea
Hi all, news on multicast support? tnks --~--~-~--~~~---~--~~ 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] Android Icon Style .psd Kit

2008-11-10 Thread Yuri
Hi All, I think it I would be excellent if Android developers team will develop and upload Icon Style template for the applications in .psd format. Any ideas about that? Thanks, Yuri Here is an example for iPhone: iPhone Icon Style .psd Kit

[android-developers] Android - source code.

2008-11-10 Thread Anil.
Hi, I would like to download the Latest RILD, Reference Vendor RIL implementations and Phone application source code from Android Home page. Can you please provide me the detailed steps or direct link and provide the overview of the code structure? Thanks and regards, Anil.

[android-developers] Re: PC Crashing

2008-11-10 Thread Wang Xiaoguang
It seems your PC's problem, eg: hardware error, OS broken, etc. Maybe the best way it is to try in another computer, or reinstall your Windows. On Mon, Nov 10, 2008 at 10:55 PM, dave.marsden [EMAIL PROTECTED] wrote: I've built a little test app in eclipse, but I now want to test it on the G1

[android-developers] how to generate user defined events and thier handlers?

2008-11-10 Thread Prabhakar
Hi All, I would like to know, how do i generate user defined events and how do i handle them? Thanks and Regards, K.Prabhakar --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to

[android-developers] Implementing Google Finance Search

2008-11-10 Thread Rohit_P
Hi, Is it possible to use the 'Google Finance Search' in our Android App? I am basically looking for a way to put in a 'Company Name' and it should return the 'Stock Quote' suggestions similar to the search field in the Google Finance web page. I started looking at the Android Search examples

[android-developers] Pay app support?

2008-11-10 Thread Robert Green
I heard that google is going to support charging for apps starting in Q1 2009. Is this correct and does anyone have details on how the royalty/revenue model is going to work? I'd like to get some numbers together so that I can plan out a bigger app than I've done in the past. Thanks!

[android-developers] Globabl Orientation Change

2008-11-10 Thread Alex
Hi All, Basically what I am trying to do is make a service that would detect changes in physical orientation and change the software's orientation accordingly. I can't seem to be able to figure out how to change global orientation, if you will. Basically I'm looking for the same effect as

[android-developers] Re: Unsuccessful Install

2008-11-10 Thread mitush
Have you done http://code.google.com/android/intro/develop-and-debug.html#developingondevicehardware ? On Nov 9, 10:57 pm, BCatDC [EMAIL PROTECTED] wrote: Hi there, I'm just getting started with android developing. I have a very frustrating problem. I've worked with samples to do a number

[android-developers] Re: Nullpointer ......Stack overflow, expanding

2008-11-10 Thread for android
Any help?? On Wed, Nov 5, 2008 at 2:03 PM, for android [EMAIL PROTECTED] wrote: So how exactly do I decide that the hierarchy is very deep or not? is it something quantifiable? Thanks On Wed, Nov 5, 2008 at 1:35 PM, hackbod [EMAIL PROTECTED] wrote: On Nov 4, 8:06 pm, for

[android-developers] Re: Land Navigation Application development

2008-11-10 Thread Jerry Elizondo
Hello Sam: Post your request in the beginners' forum. A couple of weeks ago someone at that forum was asking for ideas for a project. Cheers, Jerry On Mon, Nov 10, 2008 at 9:36 AM, Sam M [EMAIL PROTECTED] wrote: I'm sure the paying customers do. It's just a suggestion, and I didn't know

[android-developers] Re: Pre settings for each application

2008-11-10 Thread Michael
Look in the SDK documentation on http://code.google.com/android ? --~--~-~--~~~---~--~~ 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] adding OGC-compliant WMS map services to MapView

2008-11-10 Thread diatom
Hello, Is there a way to add a WMS map service to the MapView object? If so, can you provide direction or sample code on how to do this? Thanks, Clint --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: Error while connecting to ms sql server 2005 database

2008-11-10 Thread Michael
Maybe you could provide some sample code so we can figure out what you're doing? --~--~-~--~~~---~--~~ 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: adding OGC-compliant WMS map services to MapView

2008-11-10 Thread Ludwig
I have implemented a simple WMS client for Android, it is not difficult: projections aside, you can simply specify the required coordinates as input to the WMS service and then overlay the image: all the work is done on the WMS server.I have some more info (not complete, too lazy) here:

[android-developers] how to add other languages to g1

2008-11-10 Thread tupac
hi i have problem with the phone it dose not read arabic or other languages --~--~-~--~~~---~--~~ 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: Pre settings for each application

2008-11-10 Thread yasmin afrose
Hi, Thanks for your reply. Please can you tell some example \ url... It will help me to get the concept about SharedPreferences I'm able achieve the task... Thanks Again!!! Yasmin On Mon, Nov 10, 2008 at 4:37 PM, Christine [EMAIL PROTECTED]wrote: use SharedPreferences. On Nov 10, 11:11

[android-developers] Re: Cookie not enabled while using HttpPOST

2008-11-10 Thread Michael
Looking at my own code that does exactly this, I notice that I run client.getCookieStore().getCookies() *before* I make the login request (via HTTP POST). Perhaps you need to initialize the cookie store first? Otherwise, I'm doing pretty much as you're doing: DefaultHttpClient client = new

[android-developers] placing the image on listbox on right side

2008-11-10 Thread venkat
Hi All I am new to the Andoid.how to place the image on right side of the list box, possibility is tere or not Thanks in advance thanks venkat --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: Unsuccessful Install

2008-11-10 Thread atrus123
I'm guessing you need to sign your application. This is the best description I've found on how to do this: http://www.anddev.org/signing_your_apk-application_for_release_keytooljarsigner-t3069.html On Nov 9, 11:57 pm, BCatDC [EMAIL PROTECTED] wrote: Hi there, I'm just getting started with

[android-developers] Re: Cookie not enabled while using HttpPOST

2008-11-10 Thread Christine
I think you have to set the default cookie policy. HttpClient does all cookie handling automatically - depending on the policy of course. There's helpful examples on the website of the Apache httpClient project. On Nov 10, 6:37 pm, Michael [EMAIL PROTECTED] wrote: Looking at my own code that

[android-developers] Re: Unsuccessful Install

2008-11-10 Thread atrus123
BTW -- it is possible to install something on your G1 without signing using Eclipse or the adb shell application. You can find adb from the command line under tools. Try ./adb install myapp.apk. On Nov 10, 12:27 pm, atrus123 [EMAIL PROTECTED] wrote: I'm guessing you need to sign your

[android-developers] Notifications

2008-11-10 Thread Christine
I use a notification to relaunch or go back to the app from an icon in the status bar. Works fine. What I can't find is how to get the info in the Notification back. There's a PendingIntent that contains an Intent, I'd like to get that Intent back in order to decide what the app is supposed to

[android-developers] Unsuccessful Install

2008-11-10 Thread BCatDC
Hey there. So I've been futzing around all day with eclipse getting things set up, trying different samples, doing a bunch of different hello world tutorials... and every .apk that I output (no matter how good they look in emulator) (no matter whether I download them off wifi, 3g or USB) gets me

[android-developers] Re: PC Crashing

2008-11-10 Thread dave.marsden
I'd rather not have to reinstall XP, I've quite abit installed on this PC. Is there anyother way of installing the package onto the G1. ADB detects the device, so it looks likes it is communicating okay. Wang Xiaoguang wrote: It seems your PC's problem, eg: hardware error, OS broken, etc.

[android-developers] Re: Notifications

2008-11-10 Thread Mark Murphy
Christine wrote: I use a notification to relaunch or go back to the app from an icon in the status bar. Works fine. What I can't find is how to get the info in the Notification back. There's a PendingIntent that contains an Intent, I'd like to get that Intent back in order to decide what the

[android-developers] whoever wrote the email app for the G1.....

2008-11-10 Thread henchman
I hope they were a student volunteer. Because if they were paid, Google should get their money back. It's the absolutly worst attempt at an email application I've ever seen. And. I go back to the ZX Spectrum days. You can'lt even do basic things like select multiple emails for deletion, or

[android-developers] Re: repo init

2008-11-10 Thread Kathryn
I'm having the same problem, and I believe it's an issue with port 9418 as I can't telnet into 199.6.1.176 (one of the specified IP's resulting fron the init command) on this port, but can on port 80. Can anyone provide any help with attempting git on a port other than the default of 9418?

[android-developers] Pre settings for each application

2008-11-10 Thread AndroidKid
Hi, I've done one application. it will play a Airtel song if the mobile receives SMS. I would like to allow the user to assign any song as per their needs. So, I want to make this as pre-setting. Based on the selection, the song will be played if the SMS reaches the mobile. Now I've done the

[android-developers] Re: Pre settings for each application

2008-11-10 Thread Christine
use SharedPreferences. On Nov 10, 11:11 am, AndroidKid [EMAIL PROTECTED] wrote: Hi, I've done one application. it will play a Airtel song if the mobile receives SMS. I would like to allow the user to assign any song as per their needs. So, I want to make this as pre-setting. Based on the

[android-developers] Re: Orientation Sensor yaw values. Is your G1 compass bad?

2008-11-10 Thread mitush
Besides figure eights, this forum thread http://forums.t-mobile.com/tmbl/board/message?board.id=Android3thread.id=7341view=by_date_ascendingpage=10 suggests turning G1 screen down and tapping the phone on the back. This heimlich maneuver worked for me today, my compass is working again, not

[android-developers] Re: repo init

2008-11-10 Thread hackbod
Hi, this discussion would be better done in android-platform. This group is for using the SDK. On Nov 10, 8:37 am, Kathryn [EMAIL PROTECTED] wrote: I'm having the same problem, and I believe it's an issue with port 9418 as I can't telnet into 199.6.1.176 (one of the specified IP's resulting

[android-developers] stroke in a shape layout

2008-11-10 Thread Christine
Is there a special trick to the stroke attribute of a shape in an xml file? It doesn't want to show. Stroke does refer to the width of the line surrounding the box, doesn't it? Also, while it's easy to have a button on the left of the screen and a textview to the right that fills up the

[android-developers] Excessive JNI global references

2008-11-10 Thread ashAndroid
Hi Guys I am trying to build build a file download service which makes makes http connection and inStream = httpConnection.getInputStream(); outStream = new FileOutputStream(tempFile); byte buf[] = new byte[58*1024]; do

[android-developers] Re: Thread instead of Service, is it safe ?

2008-11-10 Thread hackbod
Correct, use a Service, your process can be killed any time after Activity.onPause() returns if there isn't another Activity, Service, etc active in it. On Nov 10, 1:26 am, Derek [EMAIL PROTECTED] wrote: Hi, I've an Activity A that starts a Thread T which download a file through HTTP. It

[android-developers] Re: List Views and Scroll Views

2008-11-10 Thread Sunit Katkar
Have you set the attributes for your ScrollView as 'fill_parent' or 'wrap_content' ? On Mon, Nov 10, 2008 at 4:28 AM, for android [EMAIL PROTECTED] wrote: I have a complex layout which has many table rows.Something like this: Table Layout TableRow /TableRow TableRow /TableRow TableRow

[android-developers] Re: Html parser

2008-11-10 Thread Mark Murphy
popo37 wrote: I would like to parse an HTML page to retrieve a specific element on it. Do you know any class/library I could use to achieve that ? Here is a list of a dozen or so open source ones: http://java-source.net/open-source/html-parsers They may require fixes to work on Android.

[android-developers] GMail App Suggestion

2008-11-10 Thread Wael
Hey guys, I have a small suggestion for the GMail App on Android: Whenever I'm reading an email that can be scrolled through horizontally and I reach the far right side of the email, I find myself having to scroll back to the far left in order to use one of the 6 buttons available for

[android-developers] Example how to handle dial in and dial out events...

2008-11-10 Thread Bruno Z. Pereira
Hi, Does anyone has an example already done on how can a dial in / dial out event be handled ?? Like catch the number dialed or the incoming number ? Thanks .. | _.-'|'-._ | | .__.||| | | |_.-'|'-._| | | '--'||| | | '--'|_.-'`'-._| | | '--'

[android-developers] Re: Land Navigation Application development

2008-11-10 Thread Christine
Your project competes with projects from paying customers. Guess which projects go first. On Nov 10, 4:53 am, Sam M [EMAIL PROTECTED] wrote: Sure they could.  In fact, the Army already uses such navigation systems in active duty.  I, however, am a mere officer cadet with a sweet new G1 that

[android-developers] Re: Excessive JNI global references

2008-11-10 Thread fadden
On Nov 10, 9:55 am, ashAndroid [EMAIL PROTECTED] wrote: but sometimes it crashes giving error :Excessive JNI global references: ( Pl. see logs below ) Ordinarily, objects are discarded when nothing else in the virtual heap holds a reference to them. This is a problem for native code, which

[android-developers] Need help with Activity stack (How to start a new Activity from an Overlay)

2008-11-10 Thread chris
Hi all I'm stuck on a tought problem that's been kepeing me busy for a couple of days : I have a MapActivity wich is using an Overlay. The overlay is instanciated like this in the MapActivity mPickDriverOverlay=new PickDriverOverlay(this,rideRequests,myMapView);

[android-developers] Re: MapActivity / MapView causes application to crash at startup

2008-11-10 Thread Billsen
You need to generate a key for apikey for your emulator since Google has started to enforce the rule to put real key in xml file. On Nov 9, 10:44 pm, bw [EMAIL PROTECTED] wrote: Also had to add uses-permission android:name=android.permission.INTERNET / above my application tag.

[android-developers] Re: Adding an external Jar error

2008-11-10 Thread [EMAIL PROTECTED]
Hey Guna, The jar i added was my own. I'm not sure what you mean by take care of the classes? Can you explain? Regards, Josh On Nov 8, 4:54 am, guna [EMAIL PROTECTED] wrote: Josh, What jar you added? Take care of the classes in the external jar? Is it a third party external jar or your

[android-developers] Re: Handle tap on MyLocationOverlay current GPS position

2008-11-10 Thread Guillaume Perrot
Create a MyLocationOverlay subclass, and override dispatchTap(). On Nov 8, 1:33 pm, Stu [EMAIL PROTECTED] wrote: Hi there. I'm having trouble handling a tap on my current location in a MyLocationOverlay. There seem to be functions specifically for this, but I can't seem to handle it

[android-developers] Re: Unsuccessful Install

2008-11-10 Thread BCatDC
Mitush suggests that I enable usb debugging. That gets me a lot closer. Now I can see the apps work on the phone. (HURRAY for baby steps) In fact they even remain installed, when I disconnect the phone from the development environment. Which is pretty great, however the exported .apks still

[android-developers] Re: Capture Call Audio

2008-11-10 Thread Dave
It may be technically feasible to make it work, but it would be up to the hardware mfgr to support it. This functionality is not under the control of the application processor. On Nov 8, 9:39 am, Eric Mill [EMAIL PROTECTED] wrote: So, is there a way to get the audio after the call? Surely

[android-developers] Re: Unsuccessful Install

2008-11-10 Thread Mark Murphy
BCatDC wrote: however the exported .apks still won't install over the air or from the sd card. If they're unsigned, I think that is to be expected. I'm fairly certain that anything downloaded (Market, Web site, alternative markets) needs to be signed. I'm less certain about installing off an

[android-developers] Re: Trouble with SoundPool

2008-11-10 Thread Dave
SoundPool is undocumented because it is not ready as a public API and is subject to change. There are serious problems with it including the likelihood that your application will deadlock if you attempt to use it. When it is ready, we will publish the API documentation. On Nov 9, 5:04 pm, g1bb

[android-developers] requestLocationUpdates

2008-11-10 Thread dave.marsden
I'm using the following statement to request updates on my G1s position : lm.requestLocationUpdates( LocationManager.GPS_PROVIDER, 3, 30, locationListener); Which I reckon shuold give me an update every 30sec when the device has moved more

[android-developers] Re: Notifications

2008-11-10 Thread Christine
On Nov 10, 6:54 pm, Mark Murphy [EMAIL PROTECTED] wrote: Is it returned by Activity#getIntent()? nope. Or not that I could find it. I'm ok for now but I like to do things the proper way :-) Note that I haven't tried that with a Notification-launched activity. -- Mark Murphy (a Commons

[android-developers] Re: requestLocationUpdates

2008-11-10 Thread Christine
The documentation says that you can specify these parameters but you have no guarantee that you will get updates as you specify them. On Nov 10, 9:09 pm, dave.marsden [EMAIL PROTECTED] services.co.uk wrote: I'm using the following statement to request updates on my G1s position :

[android-developers] Re: Activity menu icons

2008-11-10 Thread Peli
Great! Thanks a lot! This finally solves the problem I had a long time ago ( http://groups.google.com/group/android-developers/browse_frm/thread/5ca8bc78fdaa9e69 ) :-) Peli On Nov 3, 5:36 am, Jason Parekh [EMAIL PROTECTED] wrote: doh, you're correct, there isn't a way for clients to iterate

[android-developers] Re: Pay app support?

2008-11-10 Thread Eric
It was announced that a 30% cut of the Market price will be paid to the carrier(s), and the remaining 70% will be paid to the developer. You can also sell apps through venues other than the Market, and avoid the 30% cut, but it seems likely that most phone owners will only look for apps in the

[android-developers] Re: networking tcp/xmpp

2008-11-10 Thread Peter Neubauer
Hi there, it seems that the Smack 3.0.4 library on SDK 1.0 is currently broken due to problems with the certificate to the talk.google.com servers. I have tried to get some more info on it but without success :( /peter http://www.oredev.se - Be there or be gone. GTalk:neubauer.peter

[android-developers] Re: Notifications

2008-11-10 Thread Christine
guess I was wrong. I tried with other Activities, then I do get the intent. Guess I was tired :-| On Nov 10, 9:19 pm, Christine [EMAIL PROTECTED] wrote: On Nov 10, 6:54 pm, Mark Murphy [EMAIL PROTECTED] wrote: Is it returned by Activity#getIntent()? nope. Or not that I could find it.

[android-developers] Re: Notifications

2008-11-10 Thread Christine
On Nov 10, 6:54 pm, Mark Murphy [EMAIL PROTECTED] wrote: Is it returned by Activity#getIntent()? It turns out it is, but not always. If the Activity the intent is going to is already in memory, it gets to the front and nothing really happens. OnCreate doesn't get called so no chance to get the

[android-developers] Re: Saving a file to a system directory?

2008-11-10 Thread Eric
I haven't tried it, but I'd guess that you can't do that due to the security model. Your app is running as a user that doesn't have write access to most of the system directories. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

[android-developers] Re: Comment spam in android market :(

2008-11-10 Thread Disconnect
..or just punt out users for ToS violations. On Sat, Nov 8, 2008 at 3:24 PM, ryaninc [EMAIL PROTECTED] wrote: I wholeheartedly agree. The comments are invaluable for determining how well an application works, but it's almost to the point where the comments are worthless because there's so

[android-developers] Re: Trouble with SoundPool

2008-11-10 Thread Robert Green
Unfortunately it is the only suitable API for sounds in games at the moment. I tried to use MediaPlayers for mine and the performance and player management was sub-par. I had problems with it but after I switched to OGGs they seemed to go away. I'm prepared to retrofit my games once the API is

[android-developers] Re: LocationListener onLocationChanged

2008-11-10 Thread Alvin Yates
If you have a location listener enabled, then it does. I don't think the GPS will update until something registers with the LocationManager service, but I can't think of a way to test that hypothesis without creating a location listener first. An internals guru would be more helpful there. The

  1   2   >