Re: [android-developers] Re: Possible to check .apk signature?

2010-10-08 Thread Dianne Hackborn
On Thu, Oct 7, 2010 at 6:22 PM, DanH danhi...@ieee.org wrote: So what is protecting the application from forgery? What do you mean? This is the cert it is signed with. Do you have some way to force the cert? -- Dianne Hackborn Android framework engineer hack...@android.com Note: please

[android-developers] OpenGL version info

2010-10-08 Thread grace
hi, how to find programatically which version of opengl es is being used for any 3D project.? -- 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

Re: [android-developers] Keeping IntentService alive even if app is killed

2010-10-08 Thread Dianne Hackborn
No there is nothing you can do about that. You just have to tell your users to stop breaking your app with their $#^!! task killers. (Starting with Froyo task killers will not be able to do this.) On Thu, Oct 7, 2010 at 7:37 PM, William Ferguson william.ferguson.au@ gmail.com wrote: I have an

Re: [android-developers] Keeping IntentService alive even if app is killed

2010-10-08 Thread Dianne Hackborn
Oh sorry, I see that you are specifically talking about manage apps. In that case... the whole point of the force stop in manage apps is for a user to stop an app that they really want to make stop. As such, there is nothing you can do about it. The next version of the platform will include an

[android-developers] Re: Anybody experiencing a boost in sales since opening up to other countries?

2010-10-08 Thread Zsolt Vasvari
Yes, this happened to me as well. I think there must have been something wrong with the market, as I haven't had a sale for about 10 hrs. -- 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: Design/flowchart scheme for Android apps?

2010-10-08 Thread Per
what's 'sequential programming'? :P (couldn't resist) I'm guessing that you're looking for a tool to help with documenting your OO architectural/design thoughts? I'd say that any tool capable of handling UML could do that. These come with many price tags, from 0$ to very expensive, and

[android-developers] Re: Anybody experiencing a boost in sales since opening up to other countries?

2010-10-08 Thread JonFHancock
Yesterday was fantastic. Today was quite a bit slower. Not a plummet, but back down to previous levels. I did have a long stent today where sales barely moved. Maybe there was a problem... On Oct 7, 11:20 pm, Zsolt Vasvari zvasv...@gmail.com wrote: Yes, this happened to me as well.  I think

[android-developers] 2.2 apk does not install in 2.1 droid

2010-10-08 Thread kavitha b
Hi All, I have created a project in Android 2.2 SDK . The droid I am having is of OS 2.1 . I am not able to install the project in droid,because of OS change version. How to make it install apk in old OS versions. Please reply,it is urgent. Thanks Kavitha -- You received this message

[android-developers] Re: Possible to check .apk signature?

2010-10-08 Thread JonFHancock
In my implementation, the danger is not that the hacker will use my key to sign the apk after modifying it (not possible), but that the hacker will debug the post variables being sent to the server and copy the key, then hard code the string into the api call, do his other modifications, sign it

[android-developers] Bluetooth Service registration in Android

2010-10-08 Thread Ajmer singh
Hi I am working on a Android app that require a Bluetooth Access Server that try to Discover the Application on Android phone and once connected send the Ads back to the phone. However the access server is not able to discover the Service that i have registered using the BluetoothAdapter

[android-developers] Re: Anybody experiencing a boost in sales since opening up to other countries?

2010-10-08 Thread mort
On Oct 8, 4:00 am, Julian Bunn jjb...@gmail.com wrote: I saw a temporary boost over a few days, then a plummet ... to below the previous levels. What's going on?! I guess it's more or less just the usual procedure: People are getting their salaries/allowances either at the beginning/end or

[android-developers] even i have an color state issue with list view selection swipe

2010-10-08 Thread vadivelan m
Requirement : on touch / pressed d-pad scroll : list elements should highlight should be white list background should be magenta color during swipe left / right , up / down the list view should not get highlighted but i am facing problem ... list background is becoming white ( default ) but

Re: [android-developers] Re: Lost Checked state of check box in ListView while scrolling

2010-10-08 Thread Rocky
Hey, Thanx for reply, but i'm getting ClassCastException at ((ListView)parent).isItemChecked(position) On Fri, Oct 8, 2010 at 11:14 AM, ravi pandit rhpan...@gmail.com wrote: Hey, Its supported from the android ListView .Set CHOICE_MODE and use methods like

[android-developers] Re: ImageView slow when using SetImageResource and MediaPlayer

2010-10-08 Thread ArcDroid
isn't that what I am doing with the above code? Thread t = new Thread() { public void run() { ... thanks On Oct 5, 8:02 am, Simon Platten simonaplat...@googlemail.com wrote: Hi, Why don't you play your audio in one thread and play your animation in another thread? The way you have it

[android-developers] Re: Anybody experiencing a boost in sales since opening up to other countries?

2010-10-08 Thread JonFHancock
Very likely to be true. I did kind of think whelp, I guess everybody in Argentina who wanted my app bought it yesterday. Saturated that market. On Oct 7, 11:42 pm, mort m...@sto-helit.de wrote: On Oct 8, 4:00 am, Julian Bunn jjb...@gmail.com wrote: I saw a temporary boost over a few days,

[android-developers] Re: 2.2 apk does not install in 2.1 droid

2010-10-08 Thread JonFHancock
In your manifest file, you have probably set the minSDKVersion to 8. Set it to 7 or maybe lower. If you set it at 8, it will be a 2.2 only app. 7 is 2.1 and so on. 5 and 6 are irrelevant. If you want to work on 1.6 (there are still new devices being sold with 1.6), you need to set it to 4. On

[android-developers] Re: 2.2 apk does not install in 2.1 droid

2010-10-08 Thread JonFHancock
Sorry, I should have linked to the relevant documentation. http://developer.android.com/guide/topics/manifest/uses-sdk-element.html and http://developer.android.com/guide/topics/manifest/manifest-intro.html On Oct 7, 11:59 pm, JonFHancock jonfhanc...@gmail.com wrote: In your manifest file,

[android-developers] Re: Simulating USB connection

2010-10-08 Thread FrankG
On 7 Okt., 15:06, { Devdroid } webnet.andr...@gmail.com wrote: On 7 October 2010 14:26, DanH danhi...@ieee.org wrote: You sure the problem doesn't only occur when the USB is attached in SD sharing mode? No. Plug the cable - boom :) That's why I wonder how can I debug this w/o doing

[android-developers] How to convert xml to svg in Android

2010-10-08 Thread 大风
How to convert xml to svg in Android, Anybody anyideas? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

[android-developers] Re: Create Image from String

2010-10-08 Thread Gorka
Hi, I've been doing some tests and apparently the problem is not in the drawable, but in the way I create the InputStream. file_handle = new RandomAccessFile(payload.file(), r); file_handle.read(result); String output = new String(result); ImageView img = (ImageView)

[android-developers] Re: System Settings.db corruption

2010-10-08 Thread FrankG
Sorry, but what do you mean with Settings.db ? On 8 Okt., 00:54, cumhur cevik alice...@gmail.com wrote: Hi, When sqlite db corrupts it is creating a new one. But What happens when system Settings.db corruption? -- You received this message because you are subscribed to the Google Groups

[android-developers] Re: how to send data to server while recording

2010-10-08 Thread ko5tik
On Oct 8, 2:44 am, cindy ypu01...@yahoo.com wrote: why we need base64 encoding? Is that AMR ? Because HTTP is text based protocol - your server will barf on binary data (mine does ;) ) -- You received this message because you are subscribed to the Google Groups Android Developers group. To

[android-developers] Why doesn't my 2d polygon get filled?

2010-10-08 Thread MobileVisuals
I can draw polygons with canvas.drawVertices, but I can not fill them. I have set Paint.Style.FILL on the paint object,but the polygon doesn't get filled. Why doesn't the polygon get filled? This is my code: mLinePaint2 = new Paint(); mLinePaint2.setARGB(255, 255, 0, 0);

[android-developers] Re: Samsung Galaxy Camera flash-mode and zoom-supported oddities

2010-10-08 Thread blindfold
I have no Galaxy S Epic to test with, and I essentially use something like if (camera.getParameters().getFlashMode(camera.getParameters()) != null) parameters.setFlashMode(Camera.Parameters.FLASH_MODE_TORCH) to turn on the torch, so from your description I gather that this ought to work also on

[android-developers] Re: Any proposed changes to the Android Market?

2010-10-08 Thread ko5tik
I think squelch button for app / developer in your market client would be sufficient - you just stop seeing it. This data could be collected by market and analyzed. BTW, is there some URL where one can see actual ranking of applications? regards -- You received this message because you are

[android-developers] Re: Lost Checked state of check box in ListView while scrolling

2010-10-08 Thread ravi pandit
You might be using AdapterView other than the ListView like GridView etc try changing it.It should work. regards, ravi The PPite On Oct 8, 11:47 am, Rocky rkjhaw1...@gmail.com wrote: Hey, Thanx for reply, but i'm getting ClassCastException at ((ListView)parent).isItemChecked(position)

[android-developers] Re: Anybody experiencing a boost in sales since opening up to other countries?

2010-10-08 Thread Zsolt Vasvari
I had my best week up until yesterday. It wasn't related to the new countries as they have only come online a 3-4 days ago and I didn't see a significant uptick of non-US customers. But then yesterday, I had nothing for half a day and ended up with half the previous weeks' average sales. Today

[android-developers] Jumpnote

2010-10-08 Thread Rosebeat
I was wondering if its possible to get the notifications from other's account on android with the help of Android? Jumpnote uses a two-way synchronization technique and I get the notifications at my android phone from my own account. What if i want to get the notifications from my friend. How do i

[android-developers] Re: Jumpnote

2010-10-08 Thread Zsolt Vasvari
What is jumpnote and how does it relate to developing for the Android platform? On Oct 8, 4:13 pm, Rosebeat rosebeat2...@gmail.com wrote: I was wondering if its possible to get the notifications from other's account on android with the help of Android? Jumpnote uses a two-way synchronization

Re: [android-developers] App2SD

2010-10-08 Thread { Devdroid }
On 8 October 2010 02:16, Zaid zaid.a...@gmail.com wrote: i added android:installLocation=auto to my manifest and changed the project target api in eclipse to 8(was 3 b4) so my app can be installed to SD card, but i kept the minisdkversion to 3, so people with android 1.5 can use my app. my

Re: [android-developers] Re: 2.2 apk does not install in 2.1 droid

2010-10-08 Thread kavitha b
Thanks JonFHancock. It solved my problem. On Fri, Oct 8, 2010 at 12:31 PM, JonFHancock jonfhanc...@gmail.com wrote: Sorry, I should have linked to the relevant documentation. http://developer.android.com/guide/topics/manifest/uses-sdk-element.html and

[android-developers] Checkbox are not getting selected

2010-10-08 Thread pramod.deore
Hi, I want to display list of items in my application and user will select checkbox which is present in front of each item. List is displayed well. It also shows checkbox infront of list item but when I click on checkBox it is not getting selected. My code is like this public void onCreate(Bundle

[android-developers] Re: numeric input by default

2010-10-08 Thread easy
Thank you for reply. if I use the lines the edit field is not allow to enter the text symbols after switching from numiric to alfa mode. Best Regards, Sergey. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] Re: WebView - Unable to call a dynamically added Javascript (part of a HTML) inside a DIV using innerHTML

2010-10-08 Thread Swaroop
@Kypriakos - I am not sure that we're discussing the same thing here. I am talking about DOM manipulation for setting the HTML and you seem to be talking about HTML headers written by an AJAX call. On Oct 5, 11:08 pm, kypriakos demet...@ece.neu.edu wrote: Hi Swaroop - I posted something similar

[android-developers] [USSD] Any API's or code flow ?

2010-10-08 Thread Atul Raut
Hi, Is there any APIs for USSD [*Unstructured Supplementary Service Data*] or how the code flow in Google's Android could some one point me. Some info that I have found here : /frameworks/base/telephony/java/com/android/internal/telephony//RIL.java

[android-developers] Re: caller id spoofing

2010-10-08 Thread Yahel
Hi Greg, I think caller id is not sent by the phone that makes the call but is actually served to the receiving phone by the company at the other end. This might exists as an option in some professionnal phone contract. You should call the phone company which have the sale's staff contract. I'm

[android-developers] Re: [USSD] Any API's or code flow ?

2010-10-08 Thread Atul Raut
From some other mail thread I found some good info : There is protected Registrant mUSSDRegistrant in package com.android.internal.telephony; in BaseCommands.java There is code to process USSD Response from RIL (telephony / java / com / android / internal / telephony / RIL.java) 2381

[android-developers] how to debug APK in emulator with maven dependency

2010-10-08 Thread Mohammad Haque
Hi I'm using maven-android-plugin in my android application. I'm a dependency which maven download from remote repository before APK build. But if I want to debug the APK in emulator it does not include the those maven dependency and as a result APK does not run with normal Run (using Eclipse)

Re: [android-developers] Re: Wierd memory leak

2010-10-08 Thread Daniel Drozdzewski
On Thu, Oct 7, 2010 at 6:40 PM, DanH danhi...@ieee.org wrote: Right.  The main difference is that StringBuffer is threadsafe, and nothing else in Android is threadsafe, so little point in using StringBuffer. Well, there are few places, where Java (Android) are thread safe (Vector, Stack, few

[android-developers] Re: thousands of strings

2010-10-08 Thread Lovievi
Thank you all! Evi On okt. 5, 01:40, DanH danhi...@ieee.org wrote: I think the main difference here is that I am not discounting alternative approaches. I'll admit that I overspoke slightly when I said it was dumb to use a DB in this case.  I wouldn't say that it's smart or at all

Re: [android-developers] Re: Lost Checked state of check box in ListView while scrolling

2010-10-08 Thread Rocky
Hey Ravi, I'm using ListView not adapterView, but still i'm getting same exception On Fri, Oct 8, 2010 at 1:15 PM, ravi pandit rhpan...@gmail.com wrote: You might be using AdapterView other than the ListView like GridView etc try changing it.It should work. regards, ravi The PPite On

[android-developers] Re: Checkbox are not getting selected

2010-10-08 Thread pramod.deore
Anybody knows how to do this? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

[android-developers] reliable app store?

2010-10-08 Thread Éva Lovrencsics
Hello all, I think it's a common problem. I'd like to sell my apps, but my country is not supported for merchants already. Do you know a reliable app store where I can sell apps? Evi -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

Re: [android-developers] Re: Jumpnote

2010-10-08 Thread { Devdroid }
On 8 October 2010 10:18, Zsolt Vasvari zvasv...@gmail.com wrote: What is jumpnote and how does it relate to developing for the Android platform? Not your best day, huh? http://tinyurl.com/2af8fb -- You received this message because you are subscribed to the Google Groups Android Developers

Re: [android-developers] Re: Jumpnote

2010-10-08 Thread { Devdroid }
On 8 October 2010 12:29, { Devdroid } webnet.andr...@gmail.com wrote: http://tinyurl.com/2af8fb That's the right one http://tinyurl.com/2v5znr7 -- 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: Any proposed changes to the Android Market?

2010-10-08 Thread ses
String said: Also, app markets have (unfortunately) become a numbers game in the eyes of the public. It's important for Google to be able to say they have 150,000 (or whatever) apps in the Market; clearing the dregs would drop that number considerably, probably by an order of magnitude.

Re: [android-developers] Re: Checkbox are not getting selected

2010-10-08 Thread Rocky
send details code, (xml, java), then any one can resolved ur issue. On Fri, Oct 8, 2010 at 3:55 PM, pramod.deore deore.pramo...@gmail.comwrote: Anybody knows how to do this? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to

[android-developers] Re: Wierd memory leak

2010-10-08 Thread DanH
Well, I would hope that the Java threadsafe classes are still threadsafe. But essentially none of the UI is, and the structure of the system greatly discourages sharing data between threads. On Oct 8, 5:00 am, Daniel Drozdzewski daniel.drozdzew...@gmail.com wrote: On Thu, Oct 7, 2010 at 6:40

[android-developers] Re: How to convert xml to svg in Android

2010-10-08 Thread DanH
Rename it from .xml to .svg? (Of course, this will only work if it's the valid XML for an SVG image.) On Oct 8, 2:12 am, 大风 jindafeng2...@gmail.com wrote: How to convert xml to svg in Android, Anybody anyideas? -- You received this message because you are subscribed to the Google Groups

[android-developers] Re: Checkbox are not getting selected

2010-10-08 Thread pramod.deore
Here is my .java file import android.app.ListActivity; import android.os.Bundle; import android.view.View; import android.widget.ArrayAdapter; import android.widget.CheckBox; import android.widget.ListView; import android.widget.Toast; public class MyList extends ListActivity { /**

[android-developers] onactivityresult() does not return any changed result

2010-10-08 Thread parag
hi all, i am facing a problem with resulcode onActivityResult(); i have an activity, which opens up the system date and time activity.. startActivityForResult(new Intent( android.provider.Settings.ACTION_DATE_SETTINGS), 0); when i make any change, consider i change the date format, and i come

[android-developers] Re: Possible to check .apk signature?

2010-10-08 Thread DanH
What I mean is that if the bad actor can manipulate the apk bytes while still maintaining the same checksum, then the whole scheme is insecure -- there's no point in having it signed. A CRC32 checksum is easily spoofed -- the apk bytes need to be checksummed with a cryptographic checksum of some

[android-developers] Re: Possible to check .apk signature?

2010-10-08 Thread DanH
In my implementation, the danger is not that the hacker will use my key to sign the apk after modifying it (not possible), but that the hacker will debug the post variables being sent to the server and copy the key, then hard code the string into the api call, do his other modifications, sign

[android-developers] Undetectable Android Service

2010-10-08 Thread Amit Mangal
Hi, Is it possible to write a background service in android which is undetectable ? it should not me present is app manager also. Thankyou -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] Re: Possible to check .apk signature?

2010-10-08 Thread Mark Murphy
What CRC32 checksum? Trevor Johns, in a discussion of LVL, offered up CRC32 as a means of helping detect tampering, but that was simply an example. Otherwise, I am coming up with zero references to the use of CRC32 with respect to APKs. Do you have a pointer to somewhere in the open source code

Re: [android-developers] onactivityresult() does not return any changed result

2010-10-08 Thread Mark Murphy
On Fri, Oct 8, 2010 at 7:12 AM, parag parag.shetgaon...@gmail.com wrote: i am facing a problem with resulcode onActivityResult(); i have an activity, which opens up the system date and time activity.. startActivityForResult(new Intent( android.provider.Settings.ACTION_DATE_SETTINGS), 0);

Re: [android-developers] Undetectable Android Service

2010-10-08 Thread Mark Murphy
On Fri, Oct 8, 2010 at 7:21 AM, Amit Mangal forum.amit.man...@gmail.com wrote: Is it possible to write a background service in android which is undetectable ? Fortunately, no. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog |

[android-developers] Re: Simulating USB connection

2010-10-08 Thread DanH
Maybe you can think of some other way to cause the equivalent juggling of the notification area. On Oct 7, 8:06 am, { Devdroid } webnet.andr...@gmail.com wrote: On 7 October 2010 14:26, DanH danhi...@ieee.org wrote: You sure the problem doesn't only occur when the USB is attached in SD

[android-developers] posibility of Video calls in android

2010-10-08 Thread Narendra Bagade
Does android support video calls? Is any api is there to achive video call? Please need help ,on which version of android os video calls are possible. -- Regards, Narendra . -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

Re: [android-developers] Re: Simulating USB connection

2010-10-08 Thread { Devdroid }
On 8 October 2010 13:31, DanH danhi...@ieee.org wrote: Maybe you can think of some other way to cause the equivalent juggling of the notification area. The problem is that anny other juggling just works. USB connection crashes each time, so that would be perfect to have this simulated. I may

Re: [android-developers] Undetectable Android Service

2010-10-08 Thread { Devdroid }
On 8 October 2010 13:21, Amit Mangal forum.amit.man...@gmail.com wrote: Hi, Is it possible to write a background service in android which is undetectable ? it should not me present is app manager also. No. -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: How to convert xml to svg in Android

2010-10-08 Thread 大风
Well,Now I want to parse the svg file in Android.What do I need to do? On Oct 8, 7:06 pm, DanH danhi...@ieee.org wrote: Rename it from .xml to .svg?  (Of course, this will only work if it's the valid XML for an SVG image.) On Oct 8, 2:12 am, 大风 jindafeng2...@gmail.com wrote: How to

[android-developers] Android - landscape-right and landscape-left orientation

2010-10-08 Thread neha
I have an application, that looks good in landscape orientation only and i want to support both landscape-left and landscape-right orientation. If use setRequestedOrientation(SCREEN_ORIENTATION_LANDSCAPE), my application gets restricted to landscape-right orientation (home key is in the right

Re: [android-developers] Re: Checkbox are not getting selected

2010-10-08 Thread Rocky
Hey Pramod, just add this line getListView().setChoiceMode(ListView.CHOICE_MODE_MULTIPLE); On Fri, Oct 8, 2010 at 4:39 PM, pramod.deore deore.pramo...@gmail.comwrote: Here is my .java file import android.app.ListActivity; import android.os.Bundle; import android.view.View; import

[android-developers] Re: Live wallpaper not showing up on Samsung Captivate 2.1 update 1 while shows up fine on Droid1 Froyo

2010-10-08 Thread Jai
Dan Yes I do. Still!! Thanks Jeremy is it all wallpapers or newly published ones, because I can see others. On Oct 7, 12:24 pm, dan raaka danra...@gmail.com wrote: Do you specify the the uses-feature string android.software.live_wallpaper on you manifest ? -Dan On Wed, Oct 6, 2010 at

Re: [android-developers] Launch camera app with an intent?

2010-10-08 Thread TreKing
On Thu, Oct 7, 2010 at 5:23 PM, Ozymandias jor...@gmail.com wrote: I can't find any intent which opens the camera. http://developer.android.com/reference/android/provider/MediaStore.html#ACTION_IMAGE_CAPTURE Standard Intent action that can be sent to have the camera application capture an

[android-developers] Re: onactivityresult() does not return any changed result

2010-10-08 Thread parag
thanks :) :) On Oct 8, 4:23 pm, Mark Murphy mmur...@commonsware.com wrote: On Fri, Oct 8, 2010 at 7:12 AM, parag parag.shetgaon...@gmail.com wrote: i am facing a problem with resulcode onActivityResult(); i have an activity, which opens up the system date and time activity..

Re: [android-developers] button placement problem

2010-10-08 Thread TreKing
On Thu, Oct 7, 2010 at 6:13 PM, Varun Khanduja varunkhand...@gmail.comwrote: I am trying to get a button at bottom of a screen having a list view. Could you add more detail to the problem you're having and the outcome you're trying to achieve? A picture of each case would help as well if you

[android-developers] Re: CTS Install TIMEOUT error - Android source Froyo - SDK 2.2, ARM emulator ,Linux Ubuntu

2010-10-08 Thread sunil kumar
On Aug 10, 9:51 am, sunil kumar sunilmk...@gmail.com wrote: Dear all , I'm facing problem inCTSexecution, can any one provide me inputs regarding InstallTIMEOUTerror, 1. Is this expected behaviour ? 2. If this is an issue pls let me know if it is fixed in any latest release. Steps :

[android-developers] Re: [USSD] Any API's or code flow ?

2010-10-08 Thread Atul Raut
The MMI messages on screen displayed at package com.android.phone; in class PhoneUtils static void displayMMIComplete will this used to display USSD messages also. On Fri, Oct 8, 2010 at 4:17 PM, Jignesh Kakkad(Jiggy) jig2n...@gmail.comwrote: Hi, I am also looking for this information .

[android-developers] Re: [USSD] Any API's or code flow ?

2010-10-08 Thread Atul Raut
Hi Jagdish : is there java file which are being used for USSD call? No RIL.java is used to handled the USSD call. -Atul On Fri, Oct 8, 2010 at 4:17 PM, Jignesh Kakkad(Jiggy) jig2n...@gmail.comwrote: Hi, I am also looking for this information . First of all, Thanking you for sharing

Re: [android-developers] Display Detail Overlay when touch a marker on the map

2010-10-08 Thread TreKing
On Thu, Oct 7, 2010 at 10:38 PM, Donald hasitharand...@gmail.com wrote: and i have tried to use onTap method to capture marker event but failed. How have you failed? What does it do or not do that's not working for you?

[android-developers] Re: Possible to check .apk signature?

2010-10-08 Thread String
On Oct 8, 12:21 pm, Mark Murphy mmur...@commonsware.com wrote: What CRC32 checksum? Trevor Johns, in a discussion of LVL, offered up CRC32 as a means of helping detect tampering, but that was simply an example. Otherwise, I am coming up with zero references to the use of CRC32 with respect

[android-developers] Re: Anybody experiencing a boost in sales since opening up to other countries?

2010-10-08 Thread String
On Oct 8, 7:20 am, Zsolt Vasvari zvasv...@gmail.com wrote: Yes, this happened to me as well.  I think there must have been something wrong with the market, as I haven't had a sale for about 10 hrs. You might want to see if your app is visible in the Market. My top app has suddenly vanished,

[android-developers] Re: Possible to check .apk signature?

2010-10-08 Thread DanH
I may have misinterpreted. Presumably there's a checksum of the APK data in the signed certificate. I would assume (hope) that's a cryptographically strong checksum. (If not, the entire Android platform is in jeopardy.) If one wants a sure signature (in a generic sense) that uniquely and

[android-developers] Re: How to convert xml to svg in Android

2010-10-08 Thread jamesc
Android doesn't currently have SVG support: http://developer.android.com/guide/appendix/media-formats.html On Oct 8, 1:03 pm, 大风 jindafeng2...@gmail.com wrote: Well,Now I want to parse the svg file in Android.What do I need to do? On Oct 8, 7:06 pm, DanH danhi...@ieee.org wrote: Rename it

Re: [android-developers] Re: Anybody experiencing a boost in sales since opening up to other countries?

2010-10-08 Thread Stephen Jungels
I had a pretty good week but I'm not sure the new markets are the reason why. It would be a lot easier to tell if we had something like Analytics for Google Checkout. --SJ On Fri, Oct 8, 2010 at 8:58 AM, String sterling.ud...@googlemail.com wrote: On Oct 8, 7:20 am, Zsolt Vasvari

[android-developers] Re: Anybody experiencing a boost in sales since opening up to other countries?

2010-10-08 Thread Zsolt Vasvari
I can find my app if I search for it, but not if I just list the apps in my category. On Oct 8, 8:58 pm, String sterling.ud...@googlemail.com wrote: On Oct 8, 7:20 am, Zsolt Vasvari zvasv...@gmail.com wrote: Yes, this happened to me as well.  I think there must have been something wrong

[android-developers] Re: Anybody experiencing a boost in sales since opening up to other countries?

2010-10-08 Thread Zsolt Vasvari
I just unpublushed and republished it and it showed up immediately. WTF On Oct 8, 9:24 pm, Zsolt Vasvari zvasv...@gmail.com wrote: I can find my app if I search for it, but not if I just list the apps in my category. On Oct 8, 8:58 pm, String sterling.ud...@googlemail.com wrote: On

[android-developers] Incoming call recording

2010-10-08 Thread Amit Mangal
Hi Is this possible to run an application in back ground and record incoming call on android phone ? Any body having any link or some thing for learning recording call. Thankyou. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to

[android-developers] Re: caller id spoofing

2010-10-08 Thread tanstaafa
On Oct 7, 5:40 pm, Greg Donald gdon...@gmail.com wrote: I've searched and found nothing helpful so I'm now asking for guidance. I have a client who wishes to spoof the caller id for his phones he assigns to his sales staff.  He wants the number to appear to be from his main office to better

Re: [android-developers] reliable app store?

2010-10-08 Thread TreKing
2010/10/8 Éva Lovrencsics lovi...@gmail.com Do you know a reliable app store where I can sell apps? I don't know about reliable as I've not used them, but AndAppStore, SlideMe, and apparently upcoming Amazon store are some to look into. There's probably others if you just Google.

[android-developers] automotive related project ideas

2010-10-08 Thread kalyan kumar
Hi Guys, Can any one help me by providing some innovative automobile(car ) related projects. -- k.kalyankumar -- 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] Re: How to convert xml to svg in Android

2010-10-08 Thread 大风
So I want to write it myself, there are already apps that implement it but no source code. On Oct 8, 9:15 pm, jamesc jame...@gmail.com wrote: Android doesn't currently have SVG support:http://developer.android.com/guide/appendix/media-formats.html On Oct 8, 1:03 pm, 大风

[android-developers] Re: automotive related project ideas

2010-10-08 Thread Mike dg
An app that will drive my car to destination using GPS. On Oct 8, 9:55 am, kalyan kumar kalyankumar2...@gmail.com wrote: Hi Guys, Can any one help me by providing some innovative automobile(car ) related projects. -- k.kalyankumar -- You received this message because you are subscribed to

[android-developers] Checkbox with multiple lines with different font size

2010-10-08 Thread scadaguru
I am trying to put CheckBox with multiple lines and all lines after fist with smaller font size same as we have under from home page Menu-Settings-Sound Display-Silent mode. It shows text Silent mode on first line and then some more text (kind of help/current settings) for this option and still

[android-developers] WebView class from android supports xhtml, html4, html5 ?

2010-10-08 Thread Lidia
Hello, Does anyone know if the WebView class from android supports xhtml, html4, html5 for all platforms (from 1.5 to 2.2)? I need to use an internal browser in my app from which to open a sample page that contains some images. What is the best way to develop this pages, to make compatibbble for

[android-developers] Re: Goo Market Frustration(s) -- a request to experienced app developers

2010-10-08 Thread Streets Of Boston
Also, your app may not work on HIS hero-phone. It could be tons of things, depending on your app, that may have nothing to do with a particular (brand of) device, but with software loaded on it. E.g. your app uses services that a task-manager on his device keeps killing. E.g. your app may use

[android-developers] Re: Unit testing a class that uses android.os.Handler

2010-10-08 Thread Lance Nanek
Handler has multiple constructors. The ones that take a Looper argument can take the Looper for a Thread other than the current one. That way you don't need to create the Handler on that Thread and it is easier to ensure it is not null on the Thread using it. There's also an

[android-developers] Re: How to convert xml to svg in Android

2010-10-08 Thread DanH
If at all possible you should use a utility to convert the SVG to some other format before loading it onto the phone. On Oct 8, 9:11 am, 大风 jindafeng2...@gmail.com wrote: So I want to write it myself, there are already apps that implement it but no source code. On Oct 8, 9:15 pm, jamesc

Re: [android-developers] Why doesn't my 2d polygon get filled?

2010-10-08 Thread Romain Guy
That is not how drawVertices() works. drawVertices() only fills with shaders. If you want to draw an arbitrary shape, just use a Path instead. On Fri, Oct 8, 2010 at 12:35 AM, MobileVisuals eyv...@astralvisuals.com wrote: I can draw polygons with canvas.drawVertices, but I can not fill them. I

[android-developers] Re: Goo Market Frustration(s) -- a request to experienced app developers

2010-10-08 Thread Bret Foreman
When my app encounters an error it pops up a message with two buttons - Dismiss and Email Error Report. The error report builds an XML document with every detail I can query about the phone and emails it to a dedicated address. This tends to give me at least basic data even from someone who just

[android-developers] Re: automotive related project ideas

2010-10-08 Thread Bret Foreman
Use the accelerometer to give people advice about how to achieve better fuel economy by minimizing excessive braking and moderating acceleration. Make the screen graphics big and simple so they don't have to look down for more than a split second - no text, just shapes and colors. -- You

Re: [android-developers] Undetectable Android Service

2010-10-08 Thread TreKing
On Fri, Oct 8, 2010 at 6:21 AM, Amit Mangal forum.amit.man...@gmail.comwrote: Hi, Is it possible to write a background service in android which is undetectable ? it should not me present is app manager also. Negative.

[android-developers] Re: Undetectable Android Service

2010-10-08 Thread Bret Foreman
Well, sort of. You can build a service that listens for an Intent, then wakes up and does something. This will not be running in the background, but it will be waiting to spring into action when the right event occurs. -- You received this message because you are subscribed to the Google Groups

[android-developers] Re: button placement problem

2010-10-08 Thread Varun Khanduja
The button at the bottom of the picture in the tutorial is somethign I am trying to achieve. http://blog.maxaller.name/2010/05/attaching-a-sticky-headerfooter-to-an-android-listview/ On Oct 8, 5:33 am, TreKing treking...@gmail.com wrote: On Thu, Oct 7, 2010 at 6:13 PM, Varun Khanduja

[android-developers] Follow up for the active install count problem

2010-10-08 Thread Fabrizio Giudici
Just received this from the Market support: We wanted to follow-up. By now, you should have noticed that the installs metrics for your applications have been restored. We identified the problem as occurring with application updates only, have made some changes recently that should resolve

[android-developers] Re: javax.sound alternative

2010-10-08 Thread Mrid
Does Android supports recording in u-law format. I can see PCM-16 and PCM-8bit raw format. If not, what can be done like adding header separately? On Oct 7, 4:37 pm, Mrid mrid@gmail.com wrote: Thank you Mark for the reply. I am here uptil now.                         int bufferSize =

[android-developers] Horizontal scrolling list with image and text

2010-10-08 Thread Lance Hill
It seems like the best way to create a horizontal scrolling list of images is to use the Gallery widget. I need to display sidebar text with each image.The examples I have seen showing how to use the Gallery widget only show images. Is it possible to display a list of images+text descriptions in a

Re: [android-developers] Re: Undetectable Android Service

2010-10-08 Thread Kostya Vasilyev
Even so, the process can still be around and visible in a task killer / process manager / settings screen. -- Kostya 08.10.2010 20:08, Bret Foreman пишет: Well, sort of. You can build a service that listens for an Intent, then wakes up and does something. This will not be running in the

  1   2   >