[android-developers] determine dimensiona of the screen in View's constructor?

2010-12-21 Thread Utumno
Hello Android gurus, I am aware that when screen dimensions change, I get a call to onScreenChanged() and there I can figure out its dimensions, however it would be much more convenient if I could figure this out earlier, namely in my View's constructor. Any tips? -- You received this message b

[android-developers] Re: Apps Missing in Developers Console

2010-12-21 Thread stymie
Wow panicked to quickly.They are now under Media & Video. Cheers On Dec 21, 11:53 pm, stymie wrote: > I am missing some apps in my developer console.2 published and 2 > unpublished.This just happened. > > Any one else missing apps?Maybe they are updating the Market? -- You received this message

Re: [android-developers] How to get a contact's facebook id or url from native contacts / content resolver?

2010-12-21 Thread Dmitri Plotnikov
Access to Facebook friends via the contacts provider is restricted to a handful of system apps by the provider itself. Other applications cannot read that data. On Dec 21, 2010 10:58 PM, "Mathias Lin" wrote: > How to get the facebook id or url of a contacts that's been synced to > the native conta

[android-developers] Apps Missing in Developers Console

2010-12-21 Thread stymie
I am missing some apps in my developer console.2 published and 2 unpublished.This just happened. Any one else missing apps?Maybe they are updating the Market? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send emai

Re: [android-developers] Logcat messages related to killing process on low memory condtion

2010-12-21 Thread Dianne Hackborn
There is a message in the kernel log from the OOM killer. The only thing you will see in the normal logcat output is the framework reacting to the process(es) disappearing. On Tue, Dec 21, 2010 at 11:21 PM, xwk wrote: > Folks, >When the android system select to kill some process on low memo

[android-developers] Logcat messages related to killing process on low memory condtion

2010-12-21 Thread xwk
Folks, When the android system select to kill some process on low memory condition, will there be any specific messages in the logcat indicating which process are being killed for this reason? -- You received this message because you are subscribed to the Google Groups "Android Developers" gr

[android-developers] Re: Hudson and application signing

2010-12-21 Thread ezamur
On Dec 22, 8:15 am, ezamur wrote: > I am aware the debug store is created automatically, but what is > strange to me is that Hudson is installed on my local machine, the > same I am using for development. I just realized what I wrote. :) I meant to say that it is strange to me why Hudson behaves

[android-developers] Re: Hudson and application signing

2010-12-21 Thread ezamur
Since I am building the app with maven, I set goals to be "clean install". I am aware the debug store is created automatically, but what is strange to me is that Hudson is installed on my local machine, the same I am using for development. It also uses same maven installation and same Android SDK

[android-developers] Re: Android:: Service::OnDestroy being called late..

2010-12-21 Thread JC
thanks mark, I am starting service in myactivity::OnDestroy. When activity is opened again, I am maintaining flag in preference that service has started. If that flag is set, then i am stopping service (or starting service with stopself parameter in intent as per yr suggestion in diff. thread in g

[android-developers] How to get a contact's facebook id or url from native contacts / content resolver?

2010-12-21 Thread Mathias Lin
How to get the facebook id or url of a contacts that's been synced to the native contacts app via Facebook sync adapter? I went through different urls, but didn't see any info regarding facebook. I tried ContactsContract.Data.CONTENT_URI ContactsContract.CommonDataKinds.Email.CONTENT_URI Contact

[android-developers] Re: Upgrade Galaxy 2.1 eclairs to 2.2 froyo in india..

2010-12-21 Thread Sarwar Erfan
Galaxy 3? We have a Samsung Galaxy S (bought from South Korea). It originally came with Android 2.1 Last week I updated it to Android 2.2. I just went to Samsung website, downloaded Samsung Kies (Its samsung's desktop manager, similar to Nokia's PC Suite). I found option to upgrade firmware ther

[android-developers] Re: Google Nexus S - Please provide as DEV phone, asap :-)

2010-12-21 Thread r...@thelogicbox
Seems we all agree NFC is a significant hardware advancement! So the question remains for all non-US developers - how can we get our hands on hardware without paying over the odds or waiting months for our local carriers to deliver? We don't need access to every new phone that comes to market, jus

[android-developers] Upgrade Galaxy 2.1 eclairs to 2.2 froyo in india..

2010-12-21 Thread Atik
Hello Guys, can any one knows when samsung is releasing the updates for galaxy 3 , which runs on android 2.1 os, and we need to to update to 2.2 froyo. any ideas for indian users. which phone is best suitable with 2.2 in india.. thanks -- You received this message because you are subscribed to

[android-developers] Who broadcast the MESSAGE_STATUS_RECEIVED_ACTION message?

2010-12-21 Thread 赵杨阳
The ./packages/apps/Mms/src/com/android/mms/transaction/MessageStatusReceiver.java receive the MESSAGE_STATUS_RECEIVED_ACTION message and create message status report from the pdu. But who send the MESSAGE_STATUS_RECEIVED_ACTION message, and who provide the original pdu of the status report? I tr

[android-developers] Re: Does someone have a galaxy tab to test my game?

2010-12-21 Thread Brill Pappin
Just tried it on my gt, no problems at all. Its a Rogers GT (Canada). - Brill On Dec 21, 8:18 pm, ACR wrote: > Hey Damien, > Thanks for the quick reply. The game is "CandySwipe FREE" on the android > market and the user says they cannot open the game on the device. Thanks for > checking this o

[android-developers] Re: Do new threads inherit the priority of the creating thread in native code?

2010-12-21 Thread Doug
On Dec 20, 10:43 pm, Bytes wrote: > On non-rooted phone, how can set higher priority (Priority: 0 or -Ve) to my > native thread ? Oops, I meant android.os.Process.setThreadPriority() -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post

[android-developers] Re: Do new threads inherit the priority of the creating thread in native code?

2010-12-21 Thread Doug
On Dec 20, 10:43 pm, Bytes wrote: > On non-rooted phone, how can set higher priority (Priority: 0 or -Ve) to my > native thread ? android.os.Process.setPriority() -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send

[android-developers] SMS application

2010-12-21 Thread XiaoXiong Weng
Hi: My application is named Littlebearz and I can't seem to find it on marketplace. So how is there like 57 downloads and why it isn't on the marketplace? -- 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: What is the structure of the Android PackageManagerService?

2010-12-21 Thread Geet
Thanks mark, Have one more thought though, Correct me if I am wrong-- I believe PackageManager is responsible for "installation and Uninstallation of apps". And in the android source code , there is PackageManagerService.java, which has the actual code for installation and uninstallation. I am

Re: [android-developers] Can we delay the ANR dialog

2010-12-21 Thread Dianne Hackborn
Absolutely not. The ANR dialog is shown well after the app has caused enough delay to be noticeable to the user. You should never come close to it showing. On Tue, Dec 21, 2010 at 9:18 PM, ankit wrote: > Hi, > > Is there any way by which we can increase the response waiting time > in the sour

Re: [android-developers] Re: Google Nexus S - Please provide as DEV phone, asap :-)

2010-12-21 Thread Dianne Hackborn
On Tue, Dec 21, 2010 at 8:04 PM, TreKing wrote: > On Sun, Dec 19, 2010 at 10:03 AM, Bogdan Hlevca > wrote: > >> > Yes, we need to protect our US application developers from unfair >> > competition. >> Sorry, but I fail to understand your logic. > > I may be mistaken, but I thought she was being

[android-developers] Problems in Downloading Videos and Images hand in hand

2010-12-21 Thread Darshan
Hi All, I am currently working on a project, that requires video and images to be downloaded and displayed hand in hand. Here is the exact scenario: * 1. Parse an XML file for getting a video url. 2. Parse the same XML file for getting urls of some images associat

Re: [android-developers] Re: Maximum size of APK that can Upload to Android Market

2010-12-21 Thread Revanth kumar
Thank you for your replies. On Wed, Dec 15, 2010 at 11:09 PM, Jake Basile wrote: > If you need that much space, you should consider downloading it yourself to > the SD card. This is the accepted way to download big sets of data. the TTS > engine does this, if I recall correctly. > > -- > You re

[android-developers] Re: Local Search on google maps

2010-12-21 Thread Spiral123
yes. for the local search example (which sends a JSON reply), build the URL query and wrap it in a getHttpJson call: jsonResponse = getHttpJson(urlRequest); query limitations vary by API. check the Terms of Service for each one. On Dec 22, 12:18 am, zeeshan mirza wrote: > Thanks for your re

Re: [android-developers] Re: Local Search on google maps

2010-12-21 Thread Sarwar Erfan
I have visited the link (http://code.google.com/apis/ajaxsearch/documentation/#fonje), it does have a RESTful interface. But, the top of the page says its deprecated. I wonder how wise will it be to use a deprecated API in a new project. And, it do have limits (though dont know the exact limitat

[android-developers] Re: Can we delay the ANR dialog

2010-12-21 Thread rukiman
I would say no! You should do any long process in a thread and not on the main UI thread. On Dec 22, 4:18 pm, ankit wrote: > Hi, > > Is there any way by which we can increase the response waiting time > in  the source code so that the ANR dialog get delayed for more than 5 > seconds... > > Immedi

Re: [android-developers] Re: Local Search on google maps

2010-12-21 Thread zeeshan mirza
Thanks for your reply spiral. Is it possible to use ajax in android application? and is there any query limitation? -- 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] Can we delay the ANR dialog

2010-12-21 Thread ankit
Hi, Is there any way by which we can increase the response waiting time in the source code so that the ANR dialog get delayed for more than 5 seconds... Immediate help would be very helpful regards, Ankit Aggarwal -- You received this message because you are subscribed to the Google Groups "A

[android-developers] Re: Anybody seen a slowdown in sales?

2010-12-21 Thread Spiral123
Yeseveryone in Korea who has ever written an App appears to have released it to every market in the world. I would much prefer if Google actually nominated Local Language(s) for each Market and Automatically dumped all Apps not Localized to those languages into a new 'Foreign Language' categor

[android-developers] Re: Weird stuttering issue.

2010-12-21 Thread Brill Pappin
Thread contention? It's sounds like whatever processes for drawing is being held up (maybe on purpose to reduce system load) when nobody is interacting with the screen. Touching the screen speeds it up, or unlocks some thread that is in contention. Just a guess. - Brill Pappin -- You receive

[android-developers] Re: Local Search on google maps

2010-12-21 Thread Spiral123
I think the Places API is still in limited developer preview. You could use the ajax api for a local search: http://code.google.com/apis/ajaxsearch/documentation/#fonje. Not too difficult, but probably not 'learning level'. Beware if you use this as it was deprecated last month. The replacement

Re: [android-developers] Local Search on google maps

2010-12-21 Thread TreKing
On Tue, Dec 21, 2010 at 10:34 PM, zeeshan mirza < zeeshan.nabeel.mi...@gmail.com> wrote: > Do you know if there is any code example available about this place API ? > I don't. > What is the difference between google SEARCH API and Place API ? > I don't know. Try going to the website for both a

[android-developers] Re: Cost effectiveness of JSON in Android

2010-12-21 Thread Brill Pappin
I think Jersey uses the Jackson lib for its JSON support. - Brill -- 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 androi

Re: [android-developers] Re: Google Nexus S - Please provide as DEV phone, asap :-)

2010-12-21 Thread Brill Pappin
I understood it that way as well, but NFC is a *major* addition... at least in the circles I run in. - Brill Pappin -- 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 T

Re: [android-developers] How to determine why app was restarted

2010-12-21 Thread TreKing
On Mon, Dec 20, 2010 at 7:03 AM, Ben wrote: > Is there any way to determine why the application has been restarted? http://developer.android.com/reference/android/app/Activity.html#onCreate(android.os.Bundle) -

Re: [android-developers] Problem with adding new application

2010-12-21 Thread TreKing
On Mon, Dec 20, 2010 at 4:38 AM, Stéphane wrote: > Do you know how to solve this trouble? Google and how to prevent this bug? > Try this: http://www.google.com/support/androidmarket/bin/request.py?contact_type=publisher ---

[android-developers] Re: LVL and 2.3 Emulator

2010-12-21 Thread Brill Pappin
Anyone think they never do? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.c

Re: [android-developers] Android random time delayed user abortable infinite loop

2010-12-21 Thread TreKing
On Sun, Dec 19, 2010 at 12:20 PM, Ronoli wrote: > Hello, can anyone show me the proper way to resolve my problem? I do think I understand what your actual problem is. What, specifically, are you having trouble with given your pseudo-code description? ---

Re: [android-developers] AppWidget Actions.

2010-12-21 Thread TreKing
On Sun, Dec 19, 2010 at 7:50 PM, niv wrote: > I've been searching online for a working solution for a good couple of days > now, please help. > I haven't played with Widgets yet, but AFAIK, you could use AlarmManager to schedule an alarm to go off that sends a broadcast your Widget receives. --

[android-developers] Re: Encoding/decoding problem

2010-12-21 Thread Sarwar Erfan
Oh, forgot to mention, before you use setPreviewFormat, use getSupportedPreviewFormats() method to determine whether your phone camera supports ImageFormat.JPEG or not. http://developer.android.com/reference/android/hardware/Camera.Parameters.html#getSupportedPreviewFormats() Regards Sarwar Erf

Re: [android-developers] EditText android:numeric attribute in Java

2010-12-21 Thread TreKing
On Sat, Dec 18, 2010 at 5:49 PM, Aldo Culquicondor wrote: > How do i do the same in java? Try: http://developer.android.com/reference/android/widget/TextView.html#setRawInputType(int) http://developer.android.com/reference/android/text/InputType.html#TYPE_CLASS_NUMBER

[android-developers] Re: Encoding/decoding problem

2010-12-21 Thread Sarwar Erfan
Firstly, you are dealing with different data in onPreviewFrame and in PictureCallback I am assuming that you are not interested in PictureCallback and need to utilize onPreviewFrame. Go through the documentation (and/or search in Google) if you are interested to know more about the data formats

[android-developers] Libgdx vs. andengine

2010-12-21 Thread Pedro Duque
I'm starting a new Android project and I need an opinion. The project needs a 2d physics engine and OpenGL. I looked into libgdx and andengine and both seem to fit although I don't think I'll need the cross platform features from libgdx. Which one is more suitable? Advantages/disadvantages? Opi

Re: [android-developers] CenterOverlay

2010-12-21 Thread TreKing
On Tue, Dec 21, 2010 at 10:28 PM, JI wrote: > I set a CenterOverlay in mapview, after some actions, I want to > point/ animateTo the point in CenterOverlay again, I can't get the > geopoint from the CenterOverlay, there's no method to do. So I need to > store the center point separately, do I mis

Re: [android-developers] Local Search on google maps

2010-12-21 Thread zeeshan mirza
thanks treking for your reply. Do you know if there is any code example available about this place API ? What is the difference between google SEARCH API and Place API ? I think search api can also be used for finding places? -- You received this message because you are subscribed to the Google G

[android-developers] CenterOverlay

2010-12-21 Thread JI
I set a CenterOverlay in mapview, after some actions, I want to point/ animateTo the point in CenterOverlay again, I can't get the geopoint from the CenterOverlay, there's no method to do. So I need to store the center point separately, do I misunderstand something??? Thank you~ -- You received

[android-developers] Re: Encoding/decoding problem

2010-12-21 Thread ZeeZo
Please help. On Dec 21, 1:52 pm, ZeeZo wrote: > Hi Guys, > Thanks for your reply.I am having a very strange problem .If i send > byte[] ,that i get from onPreviewFrame method, through TCP to  my > PC.It gives me a valid JPG file but its whole black :(.But intersting > is that if i write that byte

Re: [android-developers] ADB USB Driver for MyTouch 4g

2010-12-21 Thread Sarwar Erfan
Follow Kostya's instructions to install without ADB. About connecting device to USB in PC, I have experience with Samsung Galaxy S (South Korean version). I could connect and access the internal memory of the device using Google's driver. But, I could not connect it via ADB. I downloaded usb dr

Re: [android-developers] Re: Google Nexus S - Please provide as DEV phone, asap :-)

2010-12-21 Thread TreKing
On Sun, Dec 19, 2010 at 10:03 AM, Bogdan Hlevca wrote: > > Yes, we need to protect our US application developers from unfair > > competition. > > Sorry, but I fail to understand your logic. I may be mistaken, but I thought she was being sarcastic. > > Except for NFC, I don't think there is muc

[android-developers] Re: get name of selected checkboxes from listview

2010-12-21 Thread pramod.deore
After writing if (listView.isItemChecked(arg2)) { System.out.println ("###"+listView.getItemAtPosition(arg2)); } Inside event Handler I get what I want. THANK YOU VERY MUCH TreKing and Sarwar E

Re: [android-developers] Two instances of the application

2010-12-21 Thread TreKing
On Mon, Dec 20, 2010 at 8:13 AM, Villela wrote: > Any ideas of what is causing this? > Launch mode flags. Look here: http://developer.android.com/reference/android/content/Intent.html This is standard behavior, AFAIK. If it really bothers you, you could update your manifest to better control ho

[android-developers] Re: get name of selected checkboxes from listview

2010-12-21 Thread Sarwar Erfan
On Wednesday, December 22, 2010 9:46:39 AM UTC+6, pramod.deore wrote: > > Hi TreKing, Thanks for reply >After changing code as now I get the item name of checkbox. > > listView.setOnItemClickListener(new ListView.OnItemClickListener() { > > @Override > public void onItemClick(Ada

Re: [android-developers] Local Search on google maps

2010-12-21 Thread TreKing
On Tue, Dec 21, 2010 at 8:26 PM, zeeshan mirza < zeeshan.nabeel.mi...@gmail.com> wrote: > I am looking for a code example like "Place" application available > in android which helps you to find resturans of coffee shops aroudn you. > http://code.google.com/apis/maps/documentation/places/ ---

Re: [android-developers] Re: get name of selected checkboxes from listview

2010-12-21 Thread TreKing
On Tue, Dec 21, 2010 at 9:46 PM, pramod.deore wrote: > But what I want is "I want only name of that item which are selected". http://developer.android.com/reference/android/widget/ListView.html#isItemChecked(int) --

Re: [android-developers] Re: Does someone have a galaxy tab to test my game?

2010-12-21 Thread ACR
Great to know, thanks so much for doing this and so quickly.. I really appreciate it. Albert On 12/21/2010 10:45 PM, ernestw wrote: I know this won't really help but I did try the game on my Tab and it seems to work fine. No trouble at all. I have the T-Mobile version if that helps any. Nea

[android-developers] Re: get name of selected checkboxes from listview

2010-12-21 Thread pramod.deore
Hi TreKing, Thanks for reply After changing code as now I get the item name of checkbox. listView.setOnItemClickListener(new ListView.OnItemClickListener() { @Override public void onItemClick(AdapterView arg0, View arg1, int arg2,

Re: [android-developers]How to get the data from LBS?

2010-12-21 Thread TreKing
On Tue, Dec 21, 2010 at 8:10 PM, kevens hao wrote: > So how to get the useful info? Here's one option. http://code.google.com/apis/maps/documentation/places/ - TreKing

[android-developers] Re: Does someone have a galaxy tab to test my game?

2010-12-21 Thread ernestw
I know this won't really help but I did try the game on my Tab and it seems to work fine. No trouble at all. I have the T-Mobile version if that helps any. Neat game btw. Ernest Woo Woo Games http://www.woogames.com On Dec 21, 8:18 pm, ACR wrote: > Hey Damien, > Thanks for the quick rep

[android-developers] Re: java.net.SocketException after HTC 4G latest update...

2010-12-21 Thread Steve
Moto gmail.com> writes: > > > Yes, I have internet access...  I can even connect to an URL and fetch a file via code without any issues.  This just seems like a weird HTC typical fragmentation issue... :(  In the past there was an issue with RTSP servers and WIFI. It would only work when WiF

Re: [android-developers] Re: HOW TO ACCESS GPIO PINS IN ANDROID 2.1

2010-12-21 Thread David Castillo Fuentes
hi, you my probably want to use the gpio framework that is architecture specific, so this might probably involves making your kernel device driver (Allocating/Freeing Resources using Kernel API's) + JNI Library + Java Application. On Tue, Dec 21, 2010 at 8:46 PM, Brill Pappin wrote: > > You'l

Re: [android-developers] AIDL for native process

2010-12-21 Thread Dianne Hackborn
Sorry, no there is not. On Tue, Dec 21, 2010 at 7:04 PM, scs sek wrote: > Hi, > > Is there any way i can use AIDL for native process communciate each other? > > Is it only specific to Java to Native based RPC? > > Regards > scs > > -- > You received this message because you are subscribed to the

[android-developers] AIDL for native process

2010-12-21 Thread scs sek
Hi, Is there any way i can use AIDL for native process communciate each other? Is it only specific to Java to Native based RPC? Regards scs -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-deve

[android-developers] Inputs from the Android Camera

2010-12-21 Thread Vikram
We want to get some simple information from the user (in the form of checkboxes) for a few seconds before he starts using his camera. Can we somehow present our checkbox list over his camera app? I understand that the Camera is an app in itself and that we cannot make changes or add our stuff on i

[android-developers] Re: apps using myBatis/iBatis, Apache POI and other technologies

2010-12-21 Thread Brill Pappin
You almost certainly don't want to try usibpng those line directly in an Android approve, as they are way to heavy. If you must, then process serverside and load the results to mobile. - Brill On Dec 19, 12:28 pm, Scott McMasters wrote: > Hello, I'm interested in writing an Android app and I wa

[android-developers] Re: HOW TO ACCESS GPIO PINS IN ANDROID 2.1

2010-12-21 Thread Brill Pappin
You'll likely need to drop down into the os. So this is the wrong group for your forum. Try the platform group, they are much more involved in the platform and hardware access in general. - brikk On Dec 20, 1:37 am, selva wrote: > Hi, > > I have a development Board[ARM A8 CORTEX] Running Andr

[android-developers] Re: Hudson and application signing

2010-12-21 Thread nick
On Dec 22, 1:58 am, ezamur wrote: > Hello, everybody > > I am trying to setup a CI environment for my android application. Just > when I thought I am doing good, a problem came up. Although my project > builds from the command line, it doesn't when the build is triggered > by Hudson. > The error

[android-developers] Local Search on google maps

2010-12-21 Thread zeeshan mirza
I am looking for a code example like "Place" application available in android which helps you to find resturans of coffee shops aroudn you. I want to code my own application like that place application but not on a very heigh level but just on a learning level. Let me know if somebody knows a userf

Re: [android-developers]How to get the data from LBS?

2010-12-21 Thread kevens hao
> > Like Foursquare, I want to develop an application which can get the > location and get the useful info(hotel, restaurant, groggery info and so on) > around the location. So how to get the useful info? -- You received this message because you are subscribed to the Google Groups "Android Devel

[android-developers] Re: Cost effectiveness of JSON in Android

2010-12-21 Thread Hal
You may wan to take a look a messaging the Jt design pattern framework. It supports web services. Version 7.2 will support DAOs: a) Java Pattern Oriented Framework, An application of the Messaging Design Pattern IBM Technical Library http://www.ibm.com/developerworks/webservices/library/ws-designp

[android-developers] Re: apps using myBatis/iBatis, Apache POI and other technologies

2010-12-21 Thread Hal
You may want to look into the Jt Design Patterns Framework. It implements secure Web services (Restful and Native). Version 7.2 will include Data Access Objects (DAO) and JDBC support for Android. a) Java Pattern Oriented Framework, An application of the Messaging Design Pattern IBM Technical Lib

Re: [android-developers] MMS messages

2010-12-21 Thread xiaoxiong weng
I believe it's the same as SMS_receive but you parse the data as setType("image/png"); I might be wrong :S On Mon, Dec 20, 2010 at 5:55 PM, Yves Liu wrote: > Anyone knows? > > > On Sat, Dec 18, 2010 at 3:10 PM, yves...@gmail.com wrote: > >> Hi I use android.provider.Telephony.SMS_RECEIVED to lis

Re: [android-developers] TextView bug or feature?

2010-12-21 Thread xiaoxiong weng
maybe it's just galaxy? my U8100 is fine with strong tag~ On Tue, Dec 21, 2010 at 12:51 AM, Brill Pappin wrote: > Ok, I might be mistaken about this, and I can't image nobody else has > noticed... so before I put in a bug report: > > The TextView seems to be doing something odd with HTML input.

Re: [android-developers] Re: Android 2.3 SDK Emulator is very slow

2010-12-21 Thread xiaoxiong weng
this is werid, it's slow on all SDK emulator except 1.6- ? mine 2.1 is slow as well, my cellphone is definately faster LOL On Tue, Dec 21, 2010 at 12:49 AM, lv wrote: > Yes, Android 2.3 SDK Emulator is very slow, and I got a reboot when test > my app. > > On Thu, Dec 16, 2010 at 1:33 PM, Doug C

Re: [android-developers] Does someone have a galaxy tab to test my game?

2010-12-21 Thread ACR
Hey Damien, Thanks for the quick reply. The game is "CandySwipe FREE" on the android market and the user says they cannot open the game on the device. Thanks for checking this out, it is much appreciated. Albert On Dec 21, 2010 8:13 PM, "Damien Cooke" wrote: Yes I have one if you want me to tes

Re: [android-developers] Does someone have a galaxy tab to test my game?

2010-12-21 Thread Damien Cooke
Yes I have one if you want me to test it for you. Damien On 22/12/2010, at 10:37 AM, acr wrote: > Hi, > My game has been on the market for a week now with no major issues. > However > I got an email from 2 people yesterday saying that they are having > problems with the game on their Samsung Gal

[android-developers] Re: Anybody seen a slowdown in sales?

2010-12-21 Thread Zsolt Vasvari
In the Finance category where my app is, if I look at the Free apps, a lot of the top ones are Korean banking/stock apps, which no doubt come preinstalled on phones in Korea. I don't understand why the market doesn't filter by language for app names, when it does for comments. On Dec 22, 3:15 a

Re: [android-developers] How to activate Services with alarm manager

2010-12-21 Thread TreKing
On Mon, Dec 20, 2010 at 10:54 PM, Rajamohan wrote: > Now i got one solution(Alarm Manager) i want activate particular service > repeating in some time period... How i do that? > http://developer.android.com/reference/android/app/AlarmManager.html#setRepeating(int, long, long, android.app.Pendi

BLS: [android-developers] Does someone have a galaxy tab to test my game?

2010-12-21 Thread asns.dr...@gmail.com
I will test it ASAP' Terkirim dari telepon Nokia saya -Pesan Asli- Dari: acr Terkirim: 22-12-2010 07.07.28 Subjek: [android-developers] Does someone have a galaxy tab to test my game? Hi, My game has been on the market for a week now with no major issues. However I got an email from 2 p

Re: [android-developers] How to stream video to android device over HTTP.

2010-12-21 Thread Thierry Legras
Hi, Thanks for your answer. Well I did not tried a VideoView but the MediaPlayer and a SurfaceView as given by ApiDemos. However I consider the code as good as it works for RTSP stream on WiFi. What kind of stream do you open from your VideoView? are you able to open RTSP stream through 3G networ

[android-developers] Does someone have a galaxy tab to test my game?

2010-12-21 Thread acr
Hi, My game has been on the market for a week now with no major issues. However I got an email from 2 people yesterday saying that they are having problems with the game on their Samsung Galaxy Tab If someone has a Samsung Galaxy Tab and are willing to test this for me, please send me a message. I

[android-developers] Re: Game pretty much like mine

2010-12-21 Thread Bilthon
Do you have international versions of your game? because I can see mx moto but I can't seem to find yours. I'm from Brazil and got a drakaz ROM (12152010) running on my galaxy i7500. First thing I would advice you is to improve your game visibility in the market in that case. Nelson -- You re

Re: [android-developers] Develope Alarm Application

2010-12-21 Thread TreKing
On Sun, Dec 19, 2010 at 1:39 AM, Vittochan wrote: > I cannot launch an activity when the alarm time comes. Why not? What's specifically not working for you? - TreKing

[android-developers] ndk r5: ifstream/stringstream crashing

2010-12-21 Thread arturo castro
hi i'm using ndk r5 and this: double num = 5; stringstream sstr; sstr << num; or ifstream pf(filename); double d; pf >> d; is making the app crash, no problem with ints though. is it a bug with ndk5? it was working before with r4 crystax -- You received this message because you are subscr

[android-developers] app working in simulator but not in phone

2010-12-21 Thread raqz
i have this app that i developed and it works great on the simulator with no errors what so ever. but the moment i try to run the same on the phone for testing, the app crashes stating filenotfoundexception. it says the file /res/drawable/divider_horizontal.9.png is missing. but actually speaking,

Re: [android-developers] ADB USB Driver for MyTouch 4g

2010-12-21 Thread Kostya Vasilyev
You can email the .apk to yourself, then read / open it on the phone. Or connect the phone to your computer in storage mode, copy the file over, then use one of the many available file managers to open / install. Either way, no adb is necessary. -- Kostya Vasilyev -- http://kmansoft.wordpress.com

[android-developers] Hudson and application signing

2010-12-21 Thread ezamur
Hello, everybody I am trying to setup a CI environment for my android application. Just when I thought I am doing good, a problem came up. Although my project builds from the command line, it doesn't when the build is triggered by Hudson. The error message is: Failure [INSTALL_PARSE_FAILED_INCONSI

[android-developers] Weird stuttering issue.

2010-12-21 Thread Smills
I have an extremely odd stuttering issue caused by low fps (ie getting ~15fps). The weird thing is that my fps jumps up to 60ish when I either move my finger around on the touch screen (doesn't work if I hold it completely still) or press any button on the phone. What on earth could cause touch/bu

[android-developers] Updating an Android project on the commandline to include mulitple library references

2010-12-21 Thread Bhargavi Srivathsan
I am trying to use Android.bat update project and add multiple library references. If I specify them using an -l option only the last reference added is picked up. Is there a way to mention multiple lib references on this command line. Thanks for the help. -- You received this message because yo

[android-developers] Porting USB Host driver for chipset with register address below high memory

2010-12-21 Thread CL
Hi all, I am stuck with this issue for quite some time now. I am porting the USB Host (EHCI to be exact) driver for a chipset with register address (at 0x5A80) and the internal SRAM in the same range as well. This is below the high memory set (about 0x8E00). This is why I am getting all

[android-developers] How to activate Services with alarm manager

2010-12-21 Thread Rajamohan
Hi Friends., Am Newbie for android i want develop one apps with scheduler., Now i got one solution(Alarm Manager) i want activate particular service repeating in some time period... How i do that? If any one have idea post or email (srmsar...@gmail.com) Regards -Rajamohan -- You received this m

[android-developers] Re: Android SDK installer can't find Java

2010-12-21 Thread Sri
try this suggestion: http://code.google.com/p/android/issues/detail?id=13003 -- 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

[android-developers] apps using myBatis/iBatis, Apache POI and other technologies

2010-12-21 Thread Scott McMasters
Hello, I'm interested in writing an Android app and I was wondering if any subscribers to this list have any experience using the following projects in their Android applications and would offer advice.  The projects I'd like to use include: myBatis/iBatis, or something similar Apache POI Apache

[android-developers] No Activity found to handle Intent for ACTION_DATA_ROAMING_SETTINGS

2010-12-21 Thread dacky
Hi everyone, Can anyone verify if this is some kind of a documentation error? ACTION_DATA_ROAMING_SETTINGS seems to appear on the documentation but it gives in error when I tried to invoke this menu. http://developer.android.com/reference/android/provider/Settings.html --

[android-developers] How to Build Modofied launcher source code

2010-12-21 Thread sri
Hi, As per my requirement i have to modify the Launcher source code. I have imported the launcher code in to Eclipse IDE and i could see many import errors and variable not found errors. Can any body tell me how to build the launcher source code as weel as how to build the modified launcher code

[android-developers] Re: Media player problems with android 2.3 (gingerbread), I can't open a service connection....

2010-12-21 Thread Jaumard
There is no way to do this in gingerbread? On 20 déc, 21:51, Mark Murphy wrote: > Please understand that this is not part of the Android SDK. According > to the source code, it is not exported, and therefore is not available > outside of its process. > > > > > > > > > > On Mon, Dec 20, 2010 at 3:

[android-developers] how to include resource files in a static java library?

2010-12-21 Thread Feng Qian
Hi, I am using a third-party jar as a prebuilt static java library which has some resource files in it. I made Android.mk like this: LOCAL_MODULE := my-app LOCAL_STATIC_JAVA_LIBRARIES := third-party-prebuilt-lib include $(BUILD_PACKAGE) However, resources from 3rd party jar is not included in th

[android-developers] Android Curl Animation

2010-12-21 Thread vicky kapadia
I have tried my hand at all the available animations in android right from Tweening animations to Those implemented using Java code like 3D Flip Animation. However I have failed to discover a proper page curl animation. Android developers has a project which creates curling effect on an image the

[android-developers] Picture.createFromStream loses dashed line

2010-12-21 Thread mirror_j
Hi everyone, I want to draw a dashed line in Android. I know I can achieve it using Paint#setPathEffect. When I simply get the picture object, I can draw a dashed line wihtout any problem. However, for speed, I get a ByteArrayOutputStream from the Picture object and get another Pciture. This meth

[android-developers] RatingBar adding new background artifacts in 2.3

2010-12-21 Thread Rob
Is anyone else noticing their RatingBar skins looking really bad once they port to 2.3? I'm seeing the toggle button(i believe) as the background skin on all my rating bar's that have their style inherit from @android:style/ Widget.RatingBar.Small. I've checked the 2.3(9) source styles and don't s

[android-developers] screen light off problem

2010-12-21 Thread Nayan
Hi All , I am trying to do the screen back light on and off through program but i am unable to do the screen baclight off through program . my code is as follows static PowerManager pm=null; static PowerManager.WakeLock wl=null; //for light on if(pm == null) { pm = (PowerManage

  1   2   3   >