[android-developers] Re: Receiving Alarms when the program is not running

2008-12-14 Thread Yev
Have you tried creating a service that ties to your activity. Thus the alarm service can keep on running when your activity is killed. On Dec 13, 9:06 pm, moazzamk moazz...@gmail.com wrote: Hey all, I am trying to write a program that sets and alarm and has to display a text when the alarm

[android-developers] Re: Using Homemade TrueType Fonts In Android

2008-12-14 Thread illiniwatcher
I found out the answer to my own question through experimentation. Thanks to all who looked into this. The short answer is that there was something wrong with my TrueType outlines; I suspect they were too large for Android to render. I was clued in on this when I ran an application using a

[android-developers] Re: Breakpoint not getting hit in Interface function implemented in Service

2008-12-14 Thread mnj
Hi, Btwn I'm running the service in a different process. My AndroidManifest.xml has service android:name=.MyTestService android:process=:remote But If I don't run service as different process, I don't get below issue. Not sure if the service is getting destroyed. Can someone point me to

[android-developers] Re: Has anybody received an android dev phone in the US yet?

2008-12-14 Thread bparker
Ordered mine on the 8th, got it on the 12th. Never got a tracking number or anything, and the brightstar website still says that I have never ordered anything. Also I have tried setting up APN for ATT about 10 times now and still no luck... On Dec 13, 6:11 pm, Aaron aaronhettiger2...@gmail.com

[android-developers] Re: Is a SIM Required for Dev 1?

2008-12-14 Thread Al Sutton
It needs a SIM to get it activated (http://groups.google.com/group/android-discuss/browse_thread/thread/6e188901e9ad3d76/33c2cbc74b1931c8?lnk=gstq=Can%27t+register+Dev+Phone+over+wireless#33c2cbc74b1931c8) Al. cyntacks wrote: Hi all, This may be a dumb question, and it may be more apparent

[android-developers] Re: TabActivity Theme Activity : unable to override ?

2008-12-14 Thread Maxence Warzecha
Anyone have idea if we can override Theme on an activity included in a TabActivity ? Thanks On 12 déc, 21:28, Maxence Warzecha war...@gmail.com wrote: Actually I would like to do something like :http://devtcg.blogspot.com/2008/03/advanced-tab-activity-demo.html Anyone have an idea please?

[android-developers] Re: Android Dev Phone 1™

2008-12-14 Thread Craig
Does anyone know what is required to use the dev phone? Specifically, do I need a phone contract, or can I get online through my DSL connection at home? If I can get online through my home connection, would I have access to the Android Market? --~--~-~--~~~---~--~~

[android-developers] brightstar?

2008-12-14 Thread Craig
I'm thinking about buying a dev phone, but brightstar's terms put me off. One term says the phones are as is and not of merchantable quality, and another says you agree to a $50 charge for all chargebacks. Seems rather sketchy. I have seen other posts about them not answering customer

[android-developers] Re: Anyone else seeing problems with the browser Google Sites?

2008-12-14 Thread Tom
From http://groups.google.com/group/android-beginners/browse_thread/thread/3120f4631c047b96/2b3aba0d6699b755?lnk=gstq=host+apk#2b3aba0d6699b755 In order for the browser to recognize the .apk as an application, the web-server must set the MIME type to application/ vnd.android.package-

[android-developers] Dynamically setting width of drawable

2008-12-14 Thread androidian
I want to generate dynamically and display an image which is an indicator of some percentage value, i.e. a rounded rectangle inside a slightly larger rounded rectangle, and the inner one might be say 2/3 the way along the length of the outer one, indicating roughly 66% in a visual way. It

[android-developers] Re: If your hosting your own .apk

2008-12-14 Thread Tom
Hosting your apk on http://code.google.com forces it to have an open source license, doesn't it? I am frantically searching for a place to host my apk so I can distribute it in a controlled manner (since it's quite early in development). My preference is to find a Google-based service for this.

[android-developers] Re: how to get menu handler/instance

2008-12-14 Thread android_soft
You create your menu items inside the following method... onCreateOptionsMenu(Menu menu) you have to get a handle on Menu , by declaring a class variable and assigning menu to that variable. .Activity{ private Menu myMenuHandle; onCreateOptionsMenu(Menu menu) { myMenuHandle = menu;

[android-developers] Re: Android Dev Phone 1™

2008-12-14 Thread howa
Did anyone get th phone via Free Shipping (Ground)? How much time is needed? On 12月11日, 下午1時31分, kpowerinfinity kpowerinfin...@gmail.com wrote: Same problem here. I placed an order, but the order doesn't appear on the Brightstar tracking page. It says that no orders have been placed. I have

[android-developers] Re: Service Launch problem

2008-12-14 Thread Urig
Thanks! On 14 דצמבר, 08:15, Dianne Hackborn hack...@android.com wrote: You are probably doing stuff in your constructor.  Don't do that, do your initialization in onCreate(). On Sat, Dec 13, 2008 at 4:09 AM, Urig gimelsht...@gmail.com wrote: Hi everybody, I need help :) I have

[android-developers] Re: If your hosting your own .apk

2008-12-14 Thread Al Sutton
If you get an Amazon Web Services account you can use AndAppStore.com to upload your apk with the correct MIME type to Amazons S3 service and either serve it from there or push it out to Amazons Content Distribution Network (Cloudfront). If you're interested the instructions are at

[android-developers] Re: brightstar?

2008-12-14 Thread howa
Brightstar is suppose to be a big company but their service on Dev 1 delivery is really poor... Google should take their eye on this issue... I paid my money at 11st, my credit card was charged at 12nd, but now I get nothing from Brightstar, even a tracking number! On 12月14日, 下午9時47分, Craig

[android-developers] Re: Is a SIM Required for Dev 1?

2008-12-14 Thread cyntacks
Bummer, Looks like I am going to have to keep moving my SIM from my iPhone to the Dev 1 each time I want to test... seems like a HUGE oversight. I'm surprised we can't use the phone as an actual development device But thanks for the reply Al! Kevin On Dec 14, 4:12 am, Al Sutton

[android-developers] Re: Querys involving more than one table of Contatcs Content Provider

2008-12-14 Thread pjv
Richard, Mark, Would you please share your custom solutions (in code) for reuse? CursorJoiner doesn't do very much and doesn't seem to be able to give you a new joint Cursor back eventually. I think a lot of people could benefit from some code reuse here. Thanks, pjv On 6 dec, 09:53, jarkman

[android-developers] Re: Querys involving more than one table of Contatcs Content Provider

2008-12-14 Thread Mark Murphy
pjv wrote: Would you please share your custom solutions (in code) for reuse? Alas, my implementation was made under contract for another firm, so I cannot release it at this time. I'll see about rewriting it at some point, perhaps as part of a chapter in my upcoming Advanced Android book. I

[android-developers] Re: Is a SIM Required for Dev 1?

2008-12-14 Thread Ralf
Once activated you don't need the sim. R/ On Sun, Dec 14, 2008 at 8:19 AM, cyntacks kevin.clout...@cyntacks.com wrote: Bummer, Looks like I am going to have to keep moving my SIM from my iPhone to the Dev 1 each time I want to test... seems like a HUGE oversight. I'm surprised we can't

[android-developers] Re: Is a SIM Required for Dev 1?

2008-12-14 Thread cyntacks
Ah... now we are talking GREAT to know... Thanks Ralf! On Dec 14, 11:33 am, Ralf ralfo...@gmail.com wrote: Once activated you don't need the sim. R/ On Sun, Dec 14, 2008 at 8:19 AM, cyntacks kevin.clout...@cyntacks.com wrote: Bummer, Looks like I am going to have to keep moving my

[android-developers] Re: Receiving Alarms when the program is not running

2008-12-14 Thread Ralf
What do you mean by your program might not be running when the alarm goes off? Are you using the AlarmManager and a PendingIntent? Also if you just want to get a quick display for testing purposes you can simply display a Toast from a BroadcastReceiver. R/ On Sat, Dec 13, 2008 at 9:06 PM,

[android-developers] Re: How to power off the emulator

2008-12-14 Thread Ralf
I believe that is not properly handled by the emulator. Just close the emulator window when you're done with it. Note that if you're going to relaunch an app on the emulator you don't need to stop it between. R/ On Sat, Dec 13, 2008 at 5:40 PM, Xiongzh zx.zhangxi...@gmail.com wrote: Hi

[android-developers] Re: Using resources in WebView

2008-12-14 Thread Ralf
You might have to duplicate them. Resources in /res/drawable and in /assets are not handled the same way. R/ On Sat, Dec 13, 2008 at 10:50 AM, Eric rellimc...@gmail.com wrote: My app has ImageButtons that use icons in drawable. I want a help page that can refer to those icons. I made a help

[android-developers] Re: Android OpenGl Documentation?

2008-12-14 Thread Ralf
There are two sample applications here: http://code.google.com/p/apps-for-android/source/browse/trunk/#trunk/Samples/OpenGLES The triangle one is good for starting and giving you a working GL application. You can also try to search android gl on your favourite search engine. R/ On Sat, Dec

[android-developers] hi

2008-12-14 Thread jphdsn
Problem, how could I put images in MediaStore.Images.Media..INTERNAL_CONTENT¨_URI or MediaStore.Images.Media..EXTERNAL_CONTENT¨_URI is there any link the app Pictures? thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

[android-developers] Re: continuously polling webserver for updates.

2008-12-14 Thread Charlie Collins
Thanks skink, I will check it out when I can. I think the keyword in your response there is now, the source wasn't there when I looked previously, that's why I was asking. On Dec 13, 8:56 am, skink psk...@gmail.com wrote: On 13 Gru, 12:13, Charlie Collins charlie.coll...@gmail.com wrote:

[android-developers] OutOfMemoryError BitmapFactory.nativeDecodeByteArray inside Threads

2008-12-14 Thread plusminus
The following situation happens only in a few cases, but it does more than once. - I'm receiving several OutOfMemoryError in BitmapFactory.nativeDecodeByteArray. DDMS-Heap-View never broke the 16MB barrier. I can't even get it above 6MB, while going wild and

[android-developers] Service not able to download network data while in standby

2008-12-14 Thread ChisterNordvik
Hi! I have a service polling data at regular time intervals and this works great except when the phone goes into standby. Then the service never runs the timer thread and it never receives data. How does the SMS/ Email application do this since I get those notifications while in standby? When I

[android-developers] Re: TelephonyManager.listen Freezes when the screen is shutted down!

2008-12-14 Thread Ralf
Your activity is a Context. R/ On Fri, Dec 12, 2008 at 8:16 PM, bparker cbpar...@gmail.com wrote: Where does your context (ctx) come from? I'm curious because I want to do the same thing, but getting a correct context to pass to Toast.makeText is the only part I can't figure out. On Dec

[android-developers] Re: Has anybody received an android dev phone in the US yet?

2008-12-14 Thread csme...@gmail.com
i've ordered on 6th - got it on 11th - no tracking ID --~--~-~--~~~---~--~~ 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

[android-developers] Re: Windows driver for HTC G1 phone

2008-12-14 Thread Kingorcus
Are they going to make a 64 bit version of the sdk tools as well, or just the driver On Dec 1, 9:02 am, Jon Webb jonaw...@gmail.com wrote: On the 64-bit driver issue,http://forum.xda-developers.com/showthread.php?t=446274 gives a 64-bit version of the Android USB driver. The driver is

[android-developers] Re: How to bring a exist activity to foreground

2008-12-14 Thread Ralf
On Fri, Dec 12, 2008 at 5:55 AM, mady369 aditya.mare...@gmail.com wrote: That was informative but unfortunately didn't solve my problem :( I have written an app. with three Activities A1, A2, A3. A2 can be launched from A1 and A3 can be launched from A2. Suppose if we are in A3 (the

[android-developers] Re: G1 usb drivers for linux

2008-12-14 Thread Ralf
For Ubuntu, you need to configure udev. http://www.google.com/search?q=ubuntu+android+udev R/ On Fri, Dec 12, 2008 at 7:20 AM, Peterman pserr...@gmail.com wrote: I have ubuntu also, but when I connect my phone g1 to the pc, and I put adb devices in a shell, the shell give me nothing!! How

[android-developers] Re: How to bring a exist activity to foreground

2008-12-14 Thread aditya marella
Thanks for the reply Ralf. It is just for the sake of convenience that I took only three activities. Ideally I want to be able to jump back from nth activity to (n-m)th activity (m0, nm) but atleast if it is possible to jump back to starting activity from nth activity with starting activity's

[android-developers] Re: Exception in Ant console

2008-12-14 Thread Ralf
From my previous post: - look at the tools path defined in default.properties = you can override it build.properties. R/ On Wed, Dec 10, 2008 at 11:43 PM, tharun ktha...@gmail.com wrote: Hi Ralf, I'm using SDK 1.0 The path where aapt.exe is

[android-developers] Re: SubMenu MenuItem icon?

2008-12-14 Thread Ralf
On Wed, Dec 10, 2008 at 3:01 PM, Jamie androidapp...@gmail.com wrote: Is it by design that we can't set icons in a submenu's menu item? Yes. R/ SubMenu sub = menu.addSubMenu(...); MenuItem item = sub.add (...); item.setIcon(...); -- icon does not show up Any Idea? Thanks, J

[android-developers] Re: Is there a way to tell the emulator to kill an activity?

2008-12-14 Thread Ralf
Use ddms, select the process and use the kill button just above the device list. R/ On Wed, Dec 10, 2008 at 10:35 AM, Cheryl Sedota cherylsed...@gmail.com wrote: Is there a way to tell the emulator to kill an activity (not the entire process / just the activity)? An adb or ddms command

[android-developers] Re: manage files

2008-12-14 Thread Ralf
See /res/raw here: http://code.google.com/android/devel/resources-i18n.html#CreatingResources R/ On Wed, Dec 10, 2008 at 11:10 AM, alberto agleste...@gmail.com wrote: Hello. I would like to know if there is possible to use txt or xml files that I put in the assets folder. I mean, I´m

[android-developers] Re: Service not able to download network data while in standby

2008-12-14 Thread Jean-Baptiste Queru
Sounds like you want to use AlarmManager. JBQ On Sun, Dec 14, 2008 at 9:54 AM, ChisterNordvik cnord...@gmail.com wrote: Hi! I have a service polling data at regular time intervals and this works great except when the phone goes into standby. Then the service never runs the timer thread

[android-developers] Re: AndroidManifest.xml file missing!

2008-12-14 Thread Ralf
On Tue, Dec 9, 2008 at 6:43 PM, billt@gmail.com billt@gmail.com wrote: Hi Ralf, If I create it as Android Project and Select Create project from existing source, it won't proceed further because the AndroidManifest.xml doesn't exist in the top path of the source (The Finish button

[android-developers] Re: Android Dev Phone 1™

2008-12-14 Thread Dashesy
I ordered in 12/8 and no tracking number. I live in US and ordered 2 days FedEx shipment. Please, which number should I call for complaints? On Dec 12, 4:13 pm, Aaron aaronhettiger2...@gmail.com wrote: A few people have received theirs, in fact someone who lives about 90 miles from me got

[android-developers] Re: Has anybody received an android dev phone in the US yet?

2008-12-14 Thread Dashesy
It did not work for me :( I do not know the ship date anyways, or if it has been shipped at all! I tried all past 6 days and still no luck. 6 days I can no believe I bought the 2 days shipment :( On Dec 13, 4:10 pm, Yev yevm...@gmail.com wrote: To US customers: Has anyone been able to track

[android-developers] Re: Has anybody received an android dev phone in the US yet?

2008-12-14 Thread Dashesy
Can you kindly tell everybody the phone number you called, I can not find it anywhere in the only email I received confirming the payment. Frankly, I can not wait more to get my hand on my Christmas toy! On Dec 12, 12:58 pm, Tammen Bruccoleri tammen.bruccol...@gmail.com wrote: I called and left

[android-developers] MediaStore.Images.Media.INTERNA L_CONTENT¨_URI

2008-12-14 Thread jphdsn
hi, how put images in MediaStore.Images.Media.INTERNAL_CONTENT¨_URI 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] Including classes from system namespaces causes build fail

2008-12-14 Thread fry
Hello, In my app I have to put the custom class to javax package. This did work on the old SDK's, but now with released 1.0 I receive the following error message during compile time and the app refuses to install: [2008-12-15 03:12:31 - HelloWorld] Failed to upload HelloWorld.apk on

[android-developers] Re: suggestion. replace onActivityResult(), Request Code and Result Codes with flexible callbacks

2008-12-14 Thread Anil
I am willing to collaborate with anyone interested to implement this. I don't have the ability, knowledge or desire to implement it alone. BTW, are you the Dianne in the Android video here? http://www.youtube.com/watch?v=3aUjukCdPyQ On Dec 12, 3:01 pm, Dianne Hackborn hack...@android.com wrote:

[android-developers] Re: Has anybody received an android dev phone in the US yet?

2008-12-14 Thread Tammen Bruccoleri
The telephone number she left was 877-727-9789 On Sun, Dec 14, 2008 at 4:19 PM, Dashesy azarna...@gmail.com wrote: Can you kindly tell everybody the phone number you called, I can not find it anywhere in the only email I received confirming the payment. Frankly, I can not wait more to get my

[android-developers] Re: how to install the 'Radar' package to the android platform?

2008-12-14 Thread ben rosenberg
Radar can be downloaded from the Android Market. On Dec 13, 6:39 pm, ying...@gmail.com ying...@gmail.com wrote: Hi, How to install the 'Radar' package to the android platform? When I run an application it said 'Please install Radar package' Thank you.

[android-developers] Re: Has anybody received an android dev phone in the US yet?

2008-12-14 Thread Xavier Mathews
What does this phone even look like? On 12/14/2008, Tammen Bruccoleri tammen.bruccol...@gmail.com wrote: The telephone number she left was 877-727-9789 On Sun, Dec 14, 2008 at 4:19 PM, Dashesy azarna...@gmail.com wrote: Can you kindly tell everybody the phone number you called, I can not

[android-developers] Re: how to install the 'Radar' package to the android platform?

2008-12-14 Thread Xavier Mathews
Just make sure its from android market and not from a developer.there should be information on how to download and install the radar. On 12/14/2008, ben rosenberg ben.rosenb...@gmail.com wrote: Radar can be downloaded from the Android Market. On Dec 13, 6:39 pm, ying...@gmail.com

[android-developers] Customize layout of ExpandableListView

2008-12-14 Thread mscwd01
Hey, Is it possible to customize the layout/appearance of a ExpandableListView? I wish to: - Give parents a darker background than children - Place images next to each child (children represent photo albums and I wish to place an album cover image next to each child under the photos parent)

[android-developers] Re: Including classes from system namespaces causes build fail

2008-12-14 Thread Xavier Mathews
With the new SDK you have to mod your app base on the api for the cup or device for the app. Or the Core lib just will keep on aborting. So i think it want you to install and run the new java. I think. On 12/14/2008, fry bender...@gmail.com wrote: Hello, In my app I have to put the custom

[android-developers] sim needed for accessing market?

2008-12-14 Thread Craig
Does anyone know what is required to use the dev phone? Specifically, do I need a phone contract, or can I get online through my DSL connection at home? If I can get online through my home connection, would I have access to the Android Market? I'm asking because I would like a device to develop

[android-developers] Re: sim needed for accessing market?

2008-12-14 Thread Xavier Mathews
Do you have the Dev phone. I belive that you can download from the market to the phone via usb through dsl. I have never tried. On 12/14/2008, Craig csab...@gmail.com wrote: Does anyone know what is required to use the dev phone? Specifically, do I need a phone contract, or can I get online

[android-developers] Re: AndroidManifest.xml file missing!

2008-12-14 Thread Xavier Mathews
If you dont use xml why cant you sub and use rss. On 12/14/2008, Ralf ralfo...@gmail.com wrote: On Tue, Dec 9, 2008 at 6:43 PM, billt@gmail.com billt@gmail.com wrote: Hi Ralf, If I create it as Android Project and Select Create project from existing source, it won't proceed

[android-developers] Re: Service not able to download network data while in standby

2008-12-14 Thread Xavier Mathews
Try the alarm/alert manager. When in sms and device on stand by it does not alert you unless your device is compatiable with gmail sms or another email service. On 12/14/2008, Jean-Baptiste Queru j...@google.com wrote: Sounds like you want to use AlarmManager. JBQ On Sun, Dec 14, 2008 at

[android-developers] Re: Using resources in WebView

2008-12-14 Thread Xavier Mathews
Duplicate them to where? On 12/14/2008, Ralf ralfo...@gmail.com wrote: You might have to duplicate them. Resources in /res/drawable and in /assets are not handled the same way. R/ On Sat, Dec 13, 2008 at 10:50 AM, Eric rellimc...@gmail.com wrote: My app has ImageButtons that use icons

[android-developers] Re: How to power off the emulator

2008-12-14 Thread Xavier Mathews
Close the E win at the time you power it off. On 12/14/2008, Ralf ralfo...@gmail.com wrote: I believe that is not properly handled by the emulator. Just close the emulator window when you're done with it. Note that if you're going to relaunch an app on the emulator you don't need to stop

[android-developers] Re: Using G1 as modem

2008-12-14 Thread Xavier Mathews
Wow i am not a troll get a grip i thought that he was talking about a diffrent modem sorry that i miss understodd. The sig is for my class i have to keep it on for about another 6weeks for the semester. Also the Google Guys dont care some of them may had to do the same thing when the were in

[android-developers] TraceView error

2008-12-14 Thread Emmanuel
Hi all, I'm trying to use traceview. I can create a trace file with a non zero length, but when I call traceview, here is what I have : C:\Work\android-sdk-windows-1.0_r1\android-sdk- windows-1.0_r1\toolstraceview.bat c:\work\temp\MyGame Exception in thread main java.lang.RuntimeException:

[android-developers] Re: How to scan for WiFi networks?

2008-12-14 Thread Ian
Hey, thanks! That's great! Ian --~--~-~--~~~---~--~~ 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

[android-developers] Re: sim needed for accessing market?

2008-12-14 Thread strazzere
@Xavier Can I asked exactly where you are getting your information? Did someone tell you this? @Craig The developer phone can go on networks like T-Mobile if a sim card is provided, though it is not nessicary for the phone to work. It can access the internet without any card via usb connection.

[android-developers] ATT on dev phone, data connection not working

2008-12-14 Thread bparker
I have exhausted all combinations of APN settings possible to get an ATT data connection to work, but nothing seems to help at all. I know what the settings are supposed to be (wap.cingular etc etc), it is simply not working. I even tried running logcat on the radio and it doesn't seem that it

[android-developers] Re: sim needed for accessing market?

2008-12-14 Thread Joel Knighton
Yes, the Market application is on the Android Dev Phone 1. On Sun, Dec 14, 2008 at 8:27 PM, strazzere str...@gmail.com wrote: @Xavier Can I asked exactly where you are getting your information? Did someone tell you this? @Craig The developer phone can go on networks like T-Mobile if a

[android-developers] Re: sim needed for accessing market?

2008-12-14 Thread Xavier Mathews
I read it on markek dev phone updated blog. Joel is right. On 12/14/2008, Joel Knighton joel.knigh...@gmail.com wrote: Yes, the Market application is on the Android Dev Phone 1. On Sun, Dec 14, 2008 at 8:27 PM, strazzere str...@gmail.com wrote: @Xavier Can I asked exactly where you are

[android-developers] Re: ATT on dev phone, data connection not working

2008-12-14 Thread Xavier Mathews
I would call att if i were you. On 12/14/2008, bparker cbpar...@gmail.com wrote: I have exhausted all combinations of APN settings possible to get an ATT data connection to work, but nothing seems to help at all. I know what the settings are supposed to be (wap.cingular etc etc), it is

[android-developers] Re: Debugging an app

2008-12-14 Thread android_soft
Hi, Install the eclipse plugin for android - http://code.google.com/android/intro/installing.html Go to Eclipse/Window/Show Views/Other/Android and play with the various views there. You can do everything that you can do with a normal java app, attach the debugger etc. Go to Android/Device

[android-developers] Re: How to bring a exist activity to foreground

2008-12-14 Thread for android
Group the activities with request codes and use onActivityResult On Mon, Dec 15, 2008 at 12:22 AM, aditya marella aditya.mare...@gmail.comwrote: Thanks for the reply Ralf. It is just for the sake of convenience that I took only three activities. Ideally I want to be able to jump back from

[android-developers] Installation unsuccessful - Package file was not signed correctly

2008-12-14 Thread joshv
I am becoming somewhat terrified of uploading upgrades to my market apps, because it always seems to break something. This time around, I followed the exact same process as I always do, export the unsigned jar, sign it, verify that its signed with jarsigner -verify and then upload it as an

[android-developers] receive permissions for xmpp client

2008-12-14 Thread jalandar
Hello everybody I am developing xmpp client(using smack API and open fire server). I want to know what are the receive permissions to receive chat message from other client, I want to receive file too from other client , what receive permission requires it? If anybody know sol reply me asap. If

[android-developers] Re: How can i get my location?? use GPS? And a new txt reader test!

2008-12-14 Thread SinFrancis
1, to support the reading of TXT files    2, to support the Scroll down key    3, about support page keys    4, support for touch-screen scroll up and down    5, support for bookmarks, and automatically save a bookmark, and read the last open position    6, the default font 20px, can not

[android-developers] onContextItemSelected is never called

2008-12-14 Thread Keith Wiley
I set up by calling registerForContextMenu() on an EditText. I then override onCreateContextMenu(), onContextItemSelected(), and onContextMenuClosed(). I added a few items to the menu in Create and they appeared just fine in the resulting context menu. I put breakpoints at the top of all three

[android-developers] Re: Installation unsuccessful - Package file was not signed correctly

2008-12-14 Thread joshv
Solved my own problem by watching logcat during the installation: 12-15 01:28:27.722: ERROR/PackageParser(56): Package com.quirkconsulting.ticker has no certificates at entry res/anim/ push_down_in.xml; ignoring! I removed this particular file, re-exported/signed the apk, and it worked