[android-developers] Re: Fwd: Send DTMF

2008-11-27 Thread legerb
It seems that the phone dialer wouldn't send the '#' char. If the dtmf sequence contained pound char, everything following the '#', including, will be cut off. Bug? On Oct 5, 11:09 am, legerb [EMAIL PROTECTED] wrote: Joining this one. Is it possible to send DTMF during an ongoing call in SDK

[android-developers] Use of Android logo

2008-11-27 Thread Steff
Hi I dont know if this is the right forum, but I will try anyway. Do any og you know if I am aloud to use the android logo (the robot and the strange android text) on my private android-related webpage? Regards, Per Steffensen --~--~-~--~~~---~--~~ You received

[android-developers] Re: Use of Android logo

2008-11-27 Thread Romain Guy
You can use the green droid but not the Android logo. All the details can be found here: http://www.android.com/branding.html On Thu, Nov 27, 2008 at 12:29 AM, Steff [EMAIL PROTECTED] wrote: Hi I dont know if this is the right forum, but I will try anyway. Do any og you know if I am aloud

[android-developers] Re: Push Notification Techniques: Discuss

2008-11-27 Thread Al Sutton
The AndAppStore server logs show a small range of IP addresses serving all G1 requests, which possibly backs your feeling that there is a NAT in the infrastructure somewhere. It is possible that the small range are just caching proxies and any non-HTTP traffic goes direct to the net, but

[android-developers] Emulator on webpage

2008-11-27 Thread Steff
Hi I would like to alow people on my website to try out android applications before download. Will I be able to make the emulator run on my website to let users try out applications in it. Any other solutions? Regards, Per Steffensen --~--~-~--~~~---~--~~ You

[android-developers] Re: PLUGIN Eclipse

2008-11-27 Thread Android PT
use *http* instead of *https* ~ On Wed, Nov 26, 2008 at 7:24 PM, mimmolinox [EMAIL PROTECTED] wrote: help me please? On 24 Nov, 10:38, mimmolinox [EMAIL PROTECTED] wrote: This is the error: No repository found athttps://dl-ssl.google.com/android/eclipse/ Error reading update

[android-developers] Re: setResult crashed if portrait/landscape orientation changes

2008-11-27 Thread alex
I'm having a similar problem. Like you, I have an Activity A starting Activity B via startActivityForResult(). And, like you, my Activity B uses a Theme.Dialog so that Activity A is still visible underneath B while B is active. When I change the orientation of the handset while B is active, I

[android-developers] Re: FTP Client

2008-11-27 Thread Derek
FTP with Android is possible. You have a FTP working client for Android at: http://www.lysesoft.com/products/s3-bucketupload-android/ Derek. On Nov 21, 9:41 am, friedger [EMAIL PROTECTED] wrote: I think I saw a package like com.android.ftpor similar but I can't find it on the device anymore

[android-developers] Re: Send message

2008-11-27 Thread Stefan Selariu
Hi Andrex, I don't think that the emulator support sending SMSs to the same emulator. I tried this using the Mms.apk On Wed, Nov 26, 2008 at 7:11 PM, andrex [EMAIL PROTECTED] wrote: Hi Stefan thanks, but Can I send me a message, to the emulator how run the application? or what can I do if i

[android-developers] Re: Two applications respond to the same intent

2008-11-27 Thread Thao
Hello, Regarding the package name, I have explicitly change the name, but in the real manifest I have a unique package with my company's name. Indeed when copy/paste I have forgot the activity tag, but in the program there is no error at compile. I'll would like to ask the question differently,

[android-developers] Notification Image Dimensions

2008-11-27 Thread for android
What should be the typical size of the image that is used for the notification bar? Thanks for your time! --~--~-~--~~~---~--~~ 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: Possibility to access the Own Content Provider

2008-11-27 Thread yasmin afrose
Hi Dianne, Thanks for your reply. ie, In OWNCONTENTPROVIDER manifest file, I've included provider as follows : provider android:name=com.aspire.android.wikinotes.database.WikiNotesProvider android:authorities=com.aspire.android.wikinotes.database.wikinotes / In OWNPROVIDERACCESS manifest file,

[android-developers] Re: Extending Contacts info in existing phone book

2008-11-27 Thread crontabpy
i'm interested in this too. On Nov 17, 12:55 pm, Breno T. Minzon [EMAIL PROTECTED] wrote: Hi,    After looking for this subject, i found some old posts, like this (http://groups.google.com/group/android-developers/browse_thread/threa...). Now, one year after, any google team opinion about

[android-developers] Re: Notification Image Dimensions

2008-11-27 Thread Christine
In the examples they use 16x16. On Nov 27, 12:07 pm, for android [EMAIL PROTECTED] wrote: What should be the typical size of the image that is used for the notification bar? Thanks for your time! --~--~-~--~~~---~--~~ You received this message because you are

[android-developers] Re: XML-RPC

2008-11-27 Thread Mark Murphy
check_writer wrote: Thanks for the REST suggestion, are we able to accomplish the same set of functionality (i.e. custom objects being serialized) etc? XML-RPC takes data, encodes it, and sends it over HTTP. REST takes data, encodes it, and sends it over HTTP. -- Mark Murphy (a Commons Guy)

[android-developers] Intent extras modified

2008-11-27 Thread legerb
I'm generating outgoing call using this: Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse(tel: 123456;1##)); 123456 - is the phone number i want to dial 1## - post dial DTMF sequence i'm trying to send. The problem is that somehow the chars next to '#' (including) are cut off

[android-developers] Re: PLUGIN Eclipse

2008-11-27 Thread Christine
On Nov 27, 9:57 am, Android PT [EMAIL PROTECTED] wrote: use *http* instead of *https* Are you sure? https works fine here. ~ On Wed, Nov 26, 2008 at 7:24 PM, mimmolinox [EMAIL PROTECTED] wrote: help me please? On 24 Nov, 10:38, mimmolinox [EMAIL PROTECTED] wrote: This is the

[android-developers] Re: FLAG_ONEWAY for asynchronous communication between services

2008-11-27 Thread nimbus83
Why are you wanting to run the service in another process?  Why not just run all of this stuff in the same process?  Then you don't need aidl at all, you can just do direct Java calls between all of your classes through whatever Java API you want, and you can introduce asynchronicity at any

[android-developers] SpecialCharacters

2008-11-27 Thread ena
I try to draw SpecialCharacters in Edittext.. i want draw '©' character i am used Java: KeyCharacterMap keyCharacterMap = KeyCharacterMap .load(KeyCharacterMap.BUILT_IN_KEYBOARD); keyEvents = keyCharacterMap.getEvents(new char[] { '©' }); dispatchKeyEvents(Main.edittext,

[android-developers] Re: Intent extras modified

2008-11-27 Thread Mark Murphy
legerb wrote: I'm generating outgoing call using this: Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse(tel: 123456;1##)); 123456 - is the phone number i want to dial 1## - post dial DTMF sequence i'm trying to send. The problem is that somehow the chars next to '#'

[android-developers] Re: For modular requirement

2008-11-27 Thread Ludwig
Think about Intents and split your application into multiple applications (perhaps running under the same userid), each serving a bunch of intents. Then you can upgrade each application (which might just respond to one intent) separately and Android will at run-time find the best-matching intent

[android-developers] Question on Notification

2008-11-27 Thread for android
I have a notification.Once I hit the notification,the intent i need is opened.But I do not cancel the notification.I still see the notification in the bar.But when I click the notification I donot get my Intent Started?Why is this so?? Thanks

回复:[android-developers] Re: 回复:[andr oid-developers] Re: how to access

2008-11-27 Thread front999
Thank you for your clarification. So, this is to say: There is no offical approach for applications to manage real file system (e.g. /). Am I address your point? - 原始邮件 - 发件人:Marknbsp;Murphynbsp;[EMAIL PROTECTED] [EMAIL PROTECTED]

[android-developers] Re: requestLocationUpdates

2008-11-27 Thread crontabpy
In case the provider is disabled by the user, updates will stop, and the onProviderDisabled(String) method will be called. As soon as the provider is enabled again, the onProviderEnabled(String) method will be called and location updates will start again. Is there a way to enable or disable

[android-developers] Re: Intent extras modified

2008-11-27 Thread legerb
Thanks Mark :) this is what i was missing. On Nov 27, 2:18 pm, Mark Murphy [EMAIL PROTECTED] wrote: legerb wrote: I'm generating outgoing call using this: Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse(tel: 123456;1##)); 123456 - is the phone number i want to dial

[android-developers] Re: Fwd: Send DTMF

2008-11-27 Thread legerb
(may be it would be usefull to someone else) Apparently the # should be encoded. Also the sequence shouldn't end with # or you be getting invalid mmi code error. On Nov 27, 10:25 am, legerb [EMAIL PROTECTED] wrote: It seems that the phone dialer wouldn't send the '#' char. If the dtmf sequence

[android-developers] 2d Canvas over Opengl (Flickering !!)

2008-11-27 Thread petunio
Hi all does anybody know what am I doing wrong? I managed (after a lot of problems) to put 2D graphics on top of 3D. But the 2D graphics are flickering... this is the main loop: public void drawFrame(GL10 gl, my3DObject world, Canvas myCanvas) { gl.glClear(GL10.GL_COLOR_BUFFER_BIT |

[android-developers] Send Http Request

2008-11-27 Thread salman.geek
Hi to all... I want to send an Http Request to a url which will give me the images which i want to show at ma screen.In this call i will provide the image id which i want. So im having problem in creating and sending an http call and receiving the image from that call.. Please help me ASAP

[android-developers] Re: MediaPlayer seek on startup

2008-11-27 Thread David Given
Dave Sparks wrote: You must always call prepare() before seekTo(). The player engine needs to read the first part of the stream to identify the stream type and required codecs and read the content index (if it exists). Well, yes, I'm aware of that. However, it doesn't just read the stream

[android-developers] Re: About the ProgressDialog??Someone help me?

2008-11-27 Thread Peterman
Hi You have to create a thread that do all the operations that you want. Before to start the threat, you have to create the progress dialog with this line: ProgressDialog myProgressDialog = ProgressDialog.show() after, in the thread, when all the operations are finished, you have to close

[android-developers] Re: Location Based Services

2008-11-27 Thread Peterman
Me too On Oct 22, 2:47 am, BarbieDahl [EMAIL PROTECTED] wrote: Hello Everyone, I am trying to use Androidslocationbasedservicesand I was wondering if there are code samples available that show how to plot points from a .kml or .gpx file on a map.  I have found many examples using m5

[android-developers] Re: Vertical tabs

2008-11-27 Thread Guillaume Perrot
I have the same problem... I'd like to have vertical tabs in landscape mode to improve the overall layout of my application. I'd also like a vertical Gallery. Why these simple features are not available ? On Oct 16, 12:09 am, Rohit Mordani [EMAIL PROTECTED] wrote: I have the following layout

[android-developers] Re: Vertical tabs

2008-11-27 Thread Guillaume Perrot
I have the same problem. Vertical tabs would be great. Vertical Gallery would also be neat. Especially in landscape mode, a vertical version of these widgets could be extremely useful to improve layout space. On Oct 16, 12:09 am, Rohit Mordani [EMAIL PROTECTED] wrote: I have the following

[android-developers] Re: import error for aidl

2008-11-27 Thread nimbus83
I have the same problem with another class from the android.os package. Can anybody suggest a solution to this problem? How is this done with custom classes implementing the Parcelable interface? Can such aidl definitions importing external classes be compiled without errors while using the

[android-developers] Re: Location Based Services

2008-11-27 Thread salman.geek
I think the Following Code Snippent may help you but you have to send the Latitute and Longitude using DDMS view FOr that Here comes the code for Android SDK 1.0 package com.gps; import android.content.Context; import android.location.Location; import android.location.LocationListener;

[android-developers] Re: Send Http Request

2008-11-27 Thread salman.geek
On Nov 27, 7:25 pm, salman.geek [EMAIL PROTECTED] wrote: Hi to all... I want to send an Http Request to a url which will give me the images which i want to show at ma screen.In this call i will provide the image id which i want. So im having problem in creating and sending an http call and

[android-developers] Re: Send Http Request

2008-11-27 Thread salman.geek
Please Help me out imn waiting for an urgent reply... Hi to all... I want to send an Http Request to a url which will give me the images which i want to show at ma screen.In this call i will provide the image id which i want. So im having problem in creating and sending an http call

[android-developers] About the stats bug in Market

2008-11-27 Thread Teo
Hi, is anyone from Google reading this? Please fix the stats deletion bug on app upgrades :) At least tell us when it's going to be fixed... It's been there for quite a while now and even though the message says it's going to be fixed soon it hasn't went away... Thanks in advance..

[android-developers] Re: Location Based Services

2008-11-27 Thread crontabpy
in this code location listener will be re instantiated each time you close and open your app...so if an onLocationChanged(Location loc) triggers you'll be executing everything in this method n-times it was instantiated. so you'll have to check this doesn't happen by code... you can try this

[android-developers] Mobile web and Android app integration

2008-11-27 Thread JP
I was combing through this group but could not find a definite answer (although I suspect the answer is no). Here's my question: Suppose your app is offering services on the handset by receiving and processing Intents. Obviously your app integrates with other apps on that basis, however the

[android-developers] Re: Mobile web and Android app integration

2008-11-27 Thread Mark Murphy
JP wrote: I was combing through this group but could not find a definite answer (although I suspect the answer is no). Here's my question: Suppose your app is offering services on the handset by receiving and processing Intents. Obviously your app integrates with other apps on that basis,

[android-developers] Re: Threads in Android

2008-11-27 Thread Robert Green
Or if you do need to use a thread and it is an inner class of the view or activity, you can use runOnUiThread(Runnable). On Nov 26, 11:04 pm, Clay [EMAIL PROTECTED] wrote: wow. UpdateTask is killer. I will probably use hackbod's simpler approach, but I am seriously thinking of jacking that

[android-developers] Re: Arabic ((( farsi ))) on android

2008-11-27 Thread Ludwig
Hi there, a while ago I toyed around a bit with different unicode text on Android and it was my impression that Arabic fonts (amongst others) were not supported on the emulator at least. While, of course, I could embed a unicode string in Arabic, it just displayed as the little boxes (but right to

[android-developers] Re: Threads in Android

2008-11-27 Thread Clay
or activity, you can use runOnUiThread(Runnable). ooh thats easy too. UpdateTask won out. It was sick easy to wire up and use and now I can do all this backgrounded threaded stuff that can update the UI. I am kindof surprised that the Handler message dispatch doesn't just behave the same way.

[android-developers] Re: Contacts Performance

2008-11-27 Thread Don Pellegrino
I have opened a thread on this issue in the Funambol Android Client forum at https://android-client.forge.funambol.org/ds/viewMessage.do?dsForumId=615dsMessageId=31575. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[android-developers] Re: Threads in Android

2008-11-27 Thread Clay
oops sorry I forgot to post code so it can help people... this updates and then notifies a list adapter which has an observer. /** * Background task to verify the create user action. When the action comes back * it could inform the client to sync all data if the username and

[android-developers] Re: Location Based Services

2008-11-27 Thread crontabpy
really strange, now I've tested something else. I've finished the activity in which I started the listener...but even then, listener still remains there executing every time I send a new geo fix via telnet. is this an expected behavior or not??? anyone??? help! On Nov 27, 12:34 pm,

[android-developers] pre-portability number being returned from telephony manager

2008-11-27 Thread Clay
I tried to search around a bit but this is all I could find... http://groups.google.com/group/android-developers/browse_thread/thread/34da2ed2431f67f9/627e73f98fd84f77?lnk=gstq=TelephonyManager#627e73f98fd84f77 it seems that telephony manager is not in sync with the network after I ported my

[android-developers] Re: pre-portability number being returned from telephony manager

2008-11-27 Thread Dorn Hetzel
I had to get tmobile to repush the ported number to my phone before it would work right On Nov 27, 2008 12:26 PM, Clay [EMAIL PROTECTED] wrote: I tried to search around a bit but this is all I could find...

[android-developers] Re: Mobile web and Android app integration

2008-11-27 Thread JP
Thanks Mark; clearly the web app end of things needs to be Android aware. Perhaps something can be done on a plug-in basis on the browser side of things. Hmm, Gears perhaps... I guess I'll think about this a little. Happy Thanksgiving! On Nov 27, 8:09 am, Mark Murphy [EMAIL PROTECTED] wrote:

[android-developers] Re: setResult crashed if portrait/landscape orientation changes

2008-11-27 Thread alex
Actually I take that back. The saveInstanceState does remain intact when onCreate gets called. My issue is that after multiple orientation changes, sometimes A won't get destroyed and recreated, but merely resumed, and in onResume() my A's member fields are reset. On Nov 27, 1:09 am, alex

[android-developers] Screen orientation woes

2008-11-27 Thread Stoyan Damov
Hi all, For my app the landscape orientation is useless, so I set my activity's Screen orientation attribute to portrait. Even when the screen orientation changes to landscape, whatever I draw is simply drawn flipped 90 degrees, which is what I want. I also don't want my activity to get

[android-developers] Re: Screen orientation woes

2008-11-27 Thread Mark Murphy
On a side note, I read here[1] that I can set the orientation to sensor, which will report screen orientation changes as the device's physical orientation changes. Does this really work on a real device (I still don't have one) or that's reserved for a future release? Yes, it works.

[android-developers] Re: 2d Canvas over Opengl (Flickering !!)

2008-11-27 Thread Stoyan Damov
I know shit about opengl, but re drawing the 2D - you shouldn't lock the canvas in surfaceCreated, just get a reference to the holder there. Then when you're about to draw call holder.lockCanvas, draw on the canvas and in a finally block call unlockCanvasAndPost. On Thu, Nov 27, 2008 at 4:09 PM,

[android-developers] Re: Screen orientation woes

2008-11-27 Thread Stoyan Damov
Aha, that's very good to know, thanks Mark! :) On Thu, Nov 27, 2008 at 9:42 PM, Mark Murphy [EMAIL PROTECTED] wrote: On a side note, I read here[1] that I can set the orientation to sensor, which will report screen orientation changes as the device's physical orientation changes. Does

[android-developers] Re: setResult crashed if portrait/landscape orientation changes

2008-11-27 Thread alex
Sorry for yet another update. On the first orientation change, the savedInstanceState is indeed intact when A.onCreate() runs. But if I do another orientation change (again, with B being shown on top of A), the A.onCreate() is called with a null savedInstanceState. Alex On Nov 27, 11:14 am,

[android-developers] Re: Arabic ((( farsi ))) on android

2008-11-27 Thread David Turner
Sophisticated scripts like Arabic and Indic, which requires non-trivial glyph substitution and positioning to render well are currently not supported by Android. They are planned for future revisions of the platform, but I have strictly no ETA for this. On Thu, Nov 27, 2008 at 5:48 PM, Ludwig

[android-developers] Hardware Software question

2008-11-27 Thread whitehexagon
Some basic questions: 1. Hardware - with no G1 on the market here in CH and a strong reluctance to sign a 2 year contract just for a testing device from abroad, what other options does a developer have? I've seen some test boards around but they are more expensive than the G1. Does Google plan

[android-developers] Problem setting an alarm and receiving it

2008-11-27 Thread moazzamk
Hey, I have a class that sets an alarm and another class which is called when the alarm goes off. When I try to compile the program, it says there is an error in my application but it doesn't show me any errors. This is my manifest file :

[android-developers] Re: Hardware Software question

2008-11-27 Thread Stoyan Damov
I'm also interested what's available on the Android Market. Is there any way I can get this information besides browsing random blogs? Thanks On Thu, Nov 27, 2008 at 10:31 PM, whitehexagon [EMAIL PROTECTED] wrote: Some basic questions: 1. Hardware - with no G1 on the market here in CH and a

[android-developers] Re: Arabic ((( farsi ))) on android

2008-11-27 Thread Fish Kungfu
A few weeks someone was able to load Thai fonts on their G1 with success. I also see apps in the Market for Japanese, like jsandbox and simeji. Unless I'm missing something, it seems that farsi should also be possible. You may want to check with these developers and ask how they

[android-developers] Re: If I am not using ListActivity do I need to id a ListView as the predefined id android:id/list?

2008-11-27 Thread Satya Komatineni
Thanks a bunch for the answer. Satya On Mon, Nov 17, 2008 at 11:14 PM, Romain Guy [EMAIL PROTECTED] wrote: If you don't use ListActivity, there is no reason to use this id :) On Mon, Nov 17, 2008 at 8:02 PM, Satya Komatineni [EMAIL PROTECTED] wrote: If I am not using ListActivity do I

[android-developers] Re: Screen orientation woes

2008-11-27 Thread Ralf
On Thu, Nov 27, 2008 at 11:39 AM, Stoyan Damov [EMAIL PROTECTED] wrote: Hi all, For my app the landscape orientation is useless, so I set my activity's Screen orientation attribute to portrait. Even when the screen orientation changes to landscape, whatever I draw is simply drawn flipped

[android-developers] Re: Screen orientation woes

2008-11-27 Thread Stoyan Damov
On Fri, Nov 28, 2008 at 1:23 AM, Ralf [EMAIL PROTECTED] wrote: On Thu, Nov 27, 2008 at 11:39 AM, Stoyan Damov [EMAIL PROTECTED] wrote: I also don't want my activity to get restarted when the screen orientation changes, so I set the Config changes attribute to

[android-developers] Launch Web Browser from Application

2008-11-27 Thread [EMAIL PROTECTED]
I've been looking through the old posts, but all information I found was really outdated. Could you advice me on how to open android's web browser from an application? Thanks. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

[android-developers] Re: SpecialCharacters

2008-11-27 Thread Ralf
Just use myedittext.setText((c)); or setText(\u1234) where 1234 is the unicode character you want. R/ On Thu, Nov 27, 2008 at 4:32 AM, ena [EMAIL PROTECTED] wrote: I try to draw SpecialCharacters in Edittext.. i want draw '(c)' character i am used Java: KeyCharacterMap keyCharacterMap

[android-developers] Re: Emulator on webpage

2008-11-27 Thread Ralf
On Thu, Nov 27, 2008 at 12:52 AM, Steff [EMAIL PROTECTED] wrote: Hi I would like to alow people on my website to try out android applications before download. Will I be able to make the emulator run on my website to let users try out applications in it. No, the emulator is a desktop app.

[android-developers] Keeping ListView rows clickable

2008-11-27 Thread David Orme
OK, either I'm asking a stupid question or I'm not supplying enough information (as I haven't got a response to this question). Searching Google hasn't helped; the ListView reference documentation hasn't helped. So if I'm being stupid, please forgive me and kindly point me to the proper

[android-developers] Re: Hardware Software question

2008-11-27 Thread [EMAIL PROTECTED]
Guys, The applications you don't want to duplicate are showcased here: http://www.android.com/market. Other than that, I can't suggest anything else for the time being. Yavor On Nov 27, 8:39 pm, Stoyan Damov [EMAIL PROTECTED] wrote: I'm also interested what's available on the Android Market.

[android-developers] Re: Launch Web Browser from Application

2008-11-27 Thread Ralf
On Thu, Nov 27, 2008 at 3:32 PM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I've been looking through the old posts, but all information I found was really outdated. Could you advice me on how to open android's web browser from an application? Thanks. use the http url when starting an

[android-developers] Re: Keeping ListView rows clickable

2008-11-27 Thread Mark Murphy
I want to create a ListView with a custom row that remains tappable and long-tappable. Actually, what it appears you're trying to create is a ListView with a custom row *containing focusable widgets* that remains tappable/long-tappable. The distinction is important, and, alas, it's not

[android-developers] Re: Launch Web Browser from Application

2008-11-27 Thread [EMAIL PROTECTED]
Thanks! It couldn't be easier really! Uri uri = Uri.parse(http://groups.google.com/group/android- developers); Context.startActivity(new Intent(Intent.ACTION_VIEW, uri)); use the http url when starting an intent.http://code.google.com/android/reference/android/content/Intent.html R/

[android-developers] Re: About the ProgressDialog??Someone help me?

2008-11-27 Thread 心蓝
Ok Thx 非常感谢! 2008/11/27 Peterman [EMAIL PROTECTED] Hi You have to create a thread that do all the operations that you want. Before to start the threat, you have to create the progress dialog with this line: ProgressDialog myProgressDialog = ProgressDialog.show() after, in the

[android-developers] Re: Working on a Map editor for Alien Blood Bath...

2008-11-27 Thread Mast3rpyr0
Anyone at all? On Nov 26, 2:16 pm, Mast3rpyr0 [EMAIL PROTECTED] wrote: Its a java app for desktops, so far i got the main GUI. Loading the sprite files though is where im stuck. if anyone can figure out the problem with loading the sprites i would love you forever :P

[android-developers] Re: How do I use GoogleLoginService?

2008-11-27 Thread Murray
My sentiments exactly! On Nov 18, 8:43 am, androidian [EMAIL PROTECTED] wrote: How are other developers accomplishing this?  Lots of applications I've read about interact with Google's mail, calendar, contacts etc, so there must CURRENTLY be a way of getting hold of the logged-in user (or

[android-developers] Re: Problem with ContentResolver

2008-11-27 Thread Ilan
I actually found some kind of solution: I've added MediaStore.Audio.Media.DATA with the path to the file and that sort part of the problem, now I can't add the new file to the other lists (Album / Artists) unless I'm rebooting the device. I'll appreciate any help with this one... On Nov 26,

[android-developers] Can't get taskAffinity to behave as it should

2008-11-27 Thread Josh Guilfoyle
I have recently merged my application into one apk (from two) and need the ability to treat the activities that previously were isolated in a different apk as part of separate tasks. I tried setting taskAffinity=mypackage:Foo in the activities belonging to the other task but this appears to have

[android-developers] How to automate emulator hardware keys.

2008-11-27 Thread sush
Hi, I am testing my application using Instrumentation I am able to automate the virtual keys and UI clicks but I am unable to automate the emulator hardware keys such as, Home, Menu, Home etc... Please help me in this. Thanks in advance. Susama

[android-developers] Service binding pattern and the out-of-memory killer

2008-11-27 Thread Josh Guilfoyle
I have noticed most apps follow the pattern of starting and binding to their services during an activity's onCreate, and similarly unbinding during onDestroy. From my understanding, this means that if the user enters an activity with a transient service, but then leaves the activity using the

[android-developers] Re: SpecialCharacters

2008-11-27 Thread Ernest
But setText(\u1234) is not work well ,It shows on Screen like ' Ⴄ'. On 11月28日, 上午7时34分, Ralf [EMAIL PROTECTED] wrote: Just use myedittext.setText((c)); or setText(\u1234) where 1234 is theunicodecharacter you want. R/ On Thu, Nov 27, 2008 at 4:32 AM, ena [EMAIL PROTECTED] wrote: I try

[android-developers] Re: SpecialCharacters

2008-11-27 Thread Ernest
It works well if define it in string.xml like string name=XXX \u1E00/string On 11月28日, 下午1时21分, Ernest [EMAIL PROTECTED] wrote: But setText(\u1234) is not work well ,It shows on Screen like ' Ⴄ'. On 11月28日, 上午7时34分, Ralf [EMAIL PROTECTED] wrote: Just use myedittext.setText((c)); or

[android-developers] Re: problem with buttonListener

2008-11-27 Thread suchita bhardwaj
hey all, Here is output of Logcat. i am still not able to trace out where exjactly problem is... If i comment out button.setOnClickListener(),it displays button but i need to perform some event on clicking button. Does anyone having same issue?? 11-28 11:16:17.568: ERROR/AndroidRuntime(289):

[android-developers] Re: problem with buttonListener

2008-11-27 Thread Romain Guy
The log output you just sent gives you the answer. At line 24 of your helloone activity, in the onCreate() method, you are trying to dereference a null pointer. Apparently, you did not retrieve the button correctly. On Thu, Nov 27, 2008 at 9:50 PM, suchita bhardwaj [EMAIL PROTECTED] wrote: hey

[android-developers] How to send Http Request and Receive response?????

2008-11-27 Thread salman.geek
Hi to all... I want to send an Http Request to a url which will give me the images which i want to show at ma screen.In this call i will provide the image id which i want. So im having problem in creating and sending an http call and receiving the image from that call.. Please help me ASAP

[android-developers] URL to packaged resource?

2008-11-27 Thread Anm
I'm trying to include a static help file with my app. I thought I could use a WebView and load a URL. Following the page http://developerlife.com/tutorials/?p=369, it suggests dropping the HTML in /res/raw/ and use a /android_asset/* URL. However, my WebView doesn't like it (Web page not

[android-developers] Re: Hardware Software question

2008-11-27 Thread whitehexagon
Yeah, I already mentioned the showcase, not much use really. Let's hope Google gets a full web interface sorted soon. It's not just developers that would find this useful, but also potential G1 customers checking out what apps are available. On Nov 28, 12:41 am, [EMAIL PROTECTED] [EMAIL

[android-developers] Re: For modular requirement

2008-11-27 Thread Louis
Thanks Ludwig. And by the way, could we download a Jar file and put it into the basic application, then the basic application can call it through some interfaces? On Nov 27, 8:28 pm, Ludwig [EMAIL PROTECTED] wrote: Think about Intents and split your application into multiple applications

[android-developers] Re: SpecialCharacters

2008-11-27 Thread ena
is it can't use with keyCharacterMap?? On Nov 28, 10:41 am, Ernest [EMAIL PROTECTED] wrote: It works well if define it in string.xml like string name=XXX \u1E00/string On 11月28日, 下午1时21分, Ernest [EMAIL PROTECTED] wrote: But setText(\u1234) is not work well ,It shows on Screen like ' Ⴄ'.

[android-developers] Re: SpecialCharacters

2008-11-27 Thread ena
is it not use with keyCharacterMap?? On Nov 28, 10:41 am, Ernest [EMAIL PROTECTED] wrote: It works well if define it in string.xml like string name=XXX \u1E00/string On 11月28日, 下午1时21分, Ernest [EMAIL PROTECTED] wrote: But setText(\u1234) is not work well ,It shows on Screen like ' Ⴄ'.

[android-developers] Re: SpecialCharacters

2008-11-27 Thread ena
can it be done using keyCharacterMap Class? On Nov 28, 10:41 am, Ernest [EMAIL PROTECTED] wrote: It works well if define it in string.xml like string name=XXX \u1E00/string On 11月28日, 下午1时21分, Ernest [EMAIL PROTECTED] wrote: But setText(\u1234) is not work well ,It shows on Screen like '

[android-developers] Re: Can't get taskAffinity to behave as it should

2008-11-27 Thread Josh Guilfoyle
Wait, the problem was actually that on deploying this manifest, I see the PackageParser complaining that I can't have a : character in taskAffinity. The documentation at http://code.google.com/android/intro/appmodel.html recommends that I use a :, however. On Nov 27, 8:06 pm, Josh Guilfoyle

[android-developers] Re: Can't get taskAffinity to behave as it should

2008-11-27 Thread Josh Guilfoyle
Filed an issue: http://code.google.com/p/android/issues/detail?id=1384 On Nov 27, 11:36 pm, Josh Guilfoyle [EMAIL PROTECTED] wrote: Wait, the problem was actually that on deploying this manifest, I see the PackageParser complaining that I can't have a : character in taskAffinity.  The

[android-developers] Re: Working on a Map editor for Alien Blood Bath...

2008-11-27 Thread Ralf
If you want help, may I suggest you describe what your issue is in the first place? R/ On Thu, Nov 27, 2008 at 6:35 PM, Mast3rpyr0 [EMAIL PROTECTED] wrote: Anyone at all? On Nov 26, 2:16 pm, Mast3rpyr0 [EMAIL PROTECTED] wrote: Its a java app for desktops, so far i got the main GUI.