[android-developers] NFC issue - phLibNfc_RemoteDev_CheckPresence() returned 0x00ff[NFCSTATUS_FAILED]

2011-06-20 Thread Edwin Evans
Sometimes I am getting this error: 06-17 13:21:01.449: ERROR/NFC JNI(213): phLibNfc_RemoteDev_CheckPresence() returned 0x00ff[NFCSTATUS_FAILED] I'm reading an emulated card and this seems to happen if the communication was cut off part way. At this point when I try to read again -- instead of lau

[android-developers] what

2011-06-20 Thread venkatesh venkatesh
-- venkatesh -- 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.com For more op

Re: [android-developers] triggering an application to open when i make a particular pre-defined gesture

2011-06-20 Thread rishu jain
hi On Thu, Jun 16, 2011 at 11:42 AM, rishabh jain wrote: > hi all, i am a noob and android is kinda new for mei have defined > a set of gestures in gesture buildernow i what i want is that if i > make a particular gesture then i must be able to open some > application.like if i make a

[android-developers] failed to find provider info for android.server.checkin

2011-06-20 Thread cui susan
Hi, I'm doing a Weather forecast application , At first, it work well,but it has some problems , there is something wrong "failed to find provider info for android.server.checkin" what's wrong?? -- You received this message because you are subscribed to the Google Groups "Android Deve

[android-developers] Too large bitmap to be uploaded into a texture

2011-06-20 Thread Zhenbo Xu
Hi, everybody, I am developing a application in Xoom.And I need to display a large picture(2560*1600 jpg) in a imageview which is contained in a ViewFlipper. The ImageView's Scale Type is Martrix. The Image file is in the assets dir. When I set the image file as the src of image view, DDMS reports

[android-developers] Orientation change action

2011-06-20 Thread suresh achari
Hi any one please suggest me what will happen when i change orientation and how to save data while data downloading from network with out restarting again after change the orientation. Suresh.K -- You received this message because you are subscribed to the Google Groups "Android Developers" grou

[android-developers] Re: android celebrites api

2011-06-20 Thread Neil
Once again, Dollywood is left flat. On Jun 17, 6:07 pm, nexbug wrote: > Would there be some basic support for drag and drop in this api? > Also hopefully these would be extensible to Tollywood and Mollywood in > later versions.? > When can we get a preview/trailer sdk? > -g -- You received this

[android-developers] TabHost Fatal Error in Main

2011-06-20 Thread hisheeraz
Hi there, can some one please help me in finding the problem, when i run the example for tab application i get Fatal EXCEPTION mian /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState);

[android-developers] TextView and TransitionDrawable

2011-06-20 Thread Mike
Hi, I have a textview with the background set to a transition drawable which has two 9 patches that are the same size but different content. Each 9 patch also has identical lef,top stretching and right,bottom padding. When the user long presses on the textview i would like to transition from the

[android-developers] Mapview im Tab --> import com.google.* gehen nicht

2011-06-20 Thread Mathias Dorn
Hi, habe eine App, mit ner Tab-View MainActivity mit 2 Tab´s, die auf mapActivity und logActivity verweisen jetzt ist das problem ist jetzt nur, das die mapactivity (ganz simple mapview) die googleApi nicht "kennt" da ich die MapActivity einzeln schon getestet habe, weiß ich das die auch läuft ich

[android-developers] AudioRecord StartRecording call doesnt returns when done thru JNI

2011-06-20 Thread vineet srivastava
hi, I m calling startRecording method of Audio Record thru JNI. 2 out of 10 calls the call doesnt return at all. I m using AudioRecord thru JNI in my application. Please find the code snippet attached: jni_env->CallVoidMethod(pRecStream->channelObject, record_method); Where channelObject refers

RE: [android-developers] gaming

2011-06-20 Thread Bader Al-Raisi
how to use these engines? Well I have downloaded these engines, but still i don't know how to use them for developing games? i found some tutorials that shows how to use these engines to create objects , animation , but how can we use these engines for developing games say like Angry Birds ??

Re: [android-developers] Freelancer

2011-06-20 Thread 江震宇
Blog? 2011/6/18 khanh_qhi™ > Hi, > Does anyone need freelancer in Android? > > -- > Regards, > Khanh. > > -- > 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 u

[android-developers] voip call on p2p android mobile devices

2011-06-20 Thread karan413
hello every one, can any one suggest me how to proceed to implement voip call between 2 android devices which are in p2p network(wifi direct) thanks in advance. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send

Re: [android-developers] skia / purging [x]k from font cache [y entries] - what does it mean? was Re: Custom Fonts

2011-06-20 Thread Dianne Hackborn
Well having it printed every second or so indicates you are pretty severely thrashing the cache, which can certainly impact performance. For example drawing your UI may not be fitting in the cache so each frame you draw requires re-rendering glyphs back in to the cache. If that is the case, look

Re: [android-developers] Making an apk exclusively receive an SMS

2011-06-20 Thread Fred Niggle
Just a quick suggestion, but why not get the app to delete the sms after its processed it? Regards, Fred. On 20/06/2011, Karthik wrote: > Hello- > Our app processes SMS'es meant for it. However, such SMS'es are also > picked up by other SMS-based apps. And in this case, such SMS-based > apps w

Re: [android-developers] Diagram of Android internals

2011-06-20 Thread Dianne Hackborn
Hi, that is an impressive amount of work. One thing I would suggest -- Android isn't really so divided into the areas you use (human interface, system, multimedia, etc) and I think trying to shove the pieces of it into those categories make this diagram a lot more confusing than it needs to be, wi

Re: [android-developers] Cant stop service

2011-06-20 Thread Dianne Hackborn
You are responsible for stopping whatever work your service does in its onDestroy(). You can look at the current state of all actively running services with "adb shell dumpsys activity services". Make sure your service is actually in there. If it isn't, you aren't cleaning up your worker. On Mo

Re: [android-developers] html in string resource

2011-06-20 Thread Mark Murphy
Use getText() and get a SpannedString. Or, escape your HTML (< for <, etc.). On Mon, Jun 20, 2011 at 6:37 PM, dashman wrote: > i've got an string resource entry in html format > > Hello > > When i do a getString() on this, the html is gone. > > can the html be preserved. > > -- > You received th

Re: [android-developers] Making an apk exclusively receive an SMS

2011-06-20 Thread Mark Murphy
On Mon, Jun 20, 2011 at 2:58 PM, Karthik wrote: > So, is there a way to exclusively send an SMS to an apk? Not really. > Does Android implement a port concept > (as in J2ME), where an app can listen to SMS'es meant for it on it's > specific port? No, sorry. -- Mark Murphy (a Commons Guy) http

Re: [android-developers] constructor problem

2011-06-20 Thread TreKing
On Mon, Jun 20, 2011 at 5:15 PM, אריאל wrote: > so how i can to save setting with SharedPreferences and to get and set from > other activity? Read the documentation. Using SharedPreferences is very straight forward and well-documented. --

[android-developers] html in string resource

2011-06-20 Thread dashman
i've got an string resource entry in html format Hello When i do a getString() on this, the html is gone. can the html be preserved. -- 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: [android-developers] constructor problem

2011-06-20 Thread אריאל
so how i can to save setting with SharedPreferences and to get and set from other activity? 2011/6/20 TreKing > On Mon, Jun 20, 2011 at 1:03 PM, אריאל wrote: > >> 06-20 17:30:52.020: ERROR/AndroidRuntime(17614): >> java.lang.RuntimeException: Unable to start activity >> ComponentInfo{Hello.arie

[android-developers] crash launching a sub activity

2011-06-20 Thread jbww
I am crashing trying to launch a sub-activity. I have a small app to demonstrate the problem. The main part of the app is a list view, and when you click on an item in the list view it is supposed to launch an activity which brings up a gallery view. The app crashes before onCreate() is called for

[android-developers] Re: Will static variables in a non-activity class remain in memory?

2011-06-20 Thread Droid
Ok thanks for that. The static ArrayList var will certainly be good enough for what my app requires. I was worried that it might dissappear between activities by an agressive memory clear up. :) On Jun 20, 9:52 pm, Dianne Hackborn wrote: > I wouldn't say yes.  "Calling it often" does not make

[android-developers] Re: Camera bitmap too small

2011-06-20 Thread codebear
The reason that is not working is because of memory reasons, you only get a thumbnail unless you write it directly to disk (extra 1-2 lines of code). I dont have the code with me but I learned it from the book 'Pro Android Media' by Shawn Van Avery (hint its on google books) though I must advice yo

[android-developers] Re: App Icon not present on Samsung Tablet

2011-06-20 Thread John Gaby
Thanks for giving it a try. I have asked my user to look for it at the end of the list. Hopefully he will find it there. On Jun 20, 1:54 pm, Mike wrote: > I installed the Lite version and it shows up - it's the last icon in > my list - on screen 4 of the applications - even though screen 3 has

Re: [android-developers] Cant stop service

2011-06-20 Thread Kostya Vasilyev
Does the service's onDestroy ever get called? 2011/6/21 Boozel > The service continues to write to the log > > -- > 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 >

[android-developers] Re: App Icon not present on Samsung Tablet

2011-06-20 Thread Mike
I installed the Lite version and it shows up - it's the last icon in my list - on screen 4 of the applications - even though screen 3 has some vacant slots. The Tab doesn't organize things very well on that set of screens. The first two screens are almost all bloatware - screen 2 has 3 slots that

Re: [android-developers] Will static variables in a non-activity class remain in memory?

2011-06-20 Thread Dianne Hackborn
I wouldn't say yes. "Calling it often" does not make sure it remains in memory. You are only guaranteed it will remain in memory for as long as your app is in the foreground, that is as long as its process is required as per: http://developer.android.com/guide/topics/fundamentals/processes-and-th

[android-developers] Re: App Icon not present on Samsung Tablet

2011-06-20 Thread John Gaby
The app is Quizard Flashcards. There is also a lite version, but I am not sure if it is happening with that one as well. I will ask the user to scroll down through the entire list to see if he can find it. Thanks. On Jun 20, 1:00 pm, Mike wrote: > I can - what's the app? > > The Galaxy Tab doe

Re: [android-developers] Cant stop service

2011-06-20 Thread Boozel
The service continues to write to the log -- 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...@

[android-developers] Re: App Icon not present on Samsung Tablet

2011-06-20 Thread Mike
I can - what's the app? The Galaxy Tab does not sort the application list as one would expect - it seems to sort all the bloatware apps alphabetically, but the user installed apps appear in the order they were installed and not alphabetically, so it may be there. On Jun 20, 2:28 pm, John Gaby w

Re: [android-developers] Cant stop service

2011-06-20 Thread Kostya Vasilyev
How are you checking for whether the service gets stopped? 2011/6/20 Boozel > Changing that doesnt seem to help? > Any ideas? > > -- > 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: [android-developers] Cant stop service

2011-06-20 Thread Boozel
Changing that doesnt seem to help? Any ideas? -- 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

[android-developers] Re: Help Fixing a 9-patch

2011-06-20 Thread Jake Colman
> "NE" == Nikolay Elenkov writes: NE> On Mon, Jun 20, 2011 at 11:06 PM, Jake Colman wrote: >> >> I realize that this is not a programming question but I'm hoping >> someone here can help with a quick solution. >> >> I have a 9-patch file that I use as my widget background

Re: [android-developers] Cant stop service

2011-06-20 Thread Boozel
sorry i changed the variable names to make it more readable they are actually both the same intent toggleIntent declared above. Could it be because the intent would essentially be redeclared each time the button is pressed with the line " Intent toggleIntent = new Intent(MyActivity.this, MyServ

[android-developers] Re: Help Fixing a 9-patch

2011-06-20 Thread Jake Colman
Kostyra, Thanks for trying to help. The problem turned out to be that the image has an alpha channel (transparency) that is simply way bigger than I'd like. After trying a number of things, I found that a 'zealous autocrop' resized the image but kept some transparency around the edges. As a 9-

Re: [android-developers] Cant stop service

2011-06-20 Thread Kostya Vasilyev
Ok. Your code calls startService and stopService with different Intent objects: toggleIntent vs. toggleMapIntent. Does the "stop" intent actually point to the service you want to stop? If not, you are stopping someone else's service. -- Kostya 2011/6/20 Boozel > No, i need the service to run

Re: [android-developers] Cant stop service

2011-06-20 Thread Boozel
No, i need the service to run independently from the activity -- 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-de

[android-developers] App Icon not present on Samsung Tablet

2011-06-20 Thread John Gaby
I have a customer with a Samsung Tablet and he tells me that the app Icon does not show in his list of applications. It does show on the settings page, however, and if he goes to it using the Android Market, he can launch it from there. I do not have a Samsung Tablet to try. Can anyone tell me wh

Re: [android-developers] Cant stop service

2011-06-20 Thread Kostya Vasilyev
Do you have any code that binds to this service? 2011/6/20 Boozel > Hi > I have a toggle button which i use to start and stop a service > When i press the button the service starts fine but i cant seem to stop it. > The boolean a in my code below return true but the service keeps running. > What

Re: [android-developers] Will static variables in a non-activity class remain in memory?

2011-06-20 Thread Kostya Vasilyev
Yes. This data will stay in memory for as long as the process is alive. 2011/6/20 Droid > I am storing an ArrayList in a static variable in an ordinary (non > activity) java class. > It works correctly when I load it from an activity, but will it be > guaranteed to remain > in memory even when m

[android-developers] text ads in emails sent by apps

2011-06-20 Thread Rob
Hi all, I would like to see if anyone on this list has tried this. I have an app where some event happens and the user receives an email containing the details of that event. In the bottom of the email, I'd like to insert a text advertisement, for example: * text pertaining to the app * * text p

[android-developers] Will static variables in a non-activity class remain in memory?

2011-06-20 Thread Droid
I am storing an ArrayList in a static variable in an ordinary (non activity) java class. It works correctly when I load it from an activity, but will it be guaranteed to remain in memory even when my activity is not calling it often? Here is the class: package com.maps.spoken; import java.util.A

[android-developers] Cant stop service

2011-06-20 Thread Boozel
Hi I have a toggle button which i use to start and stop a service When i press the button the service starts fine but i cant seem to stop it. The boolean a in my code below return true but the service keeps running. What am i doing wrong? any help would be great. Thanks in advance toggle = (Toggle

[android-developers] Making an apk exclusively receive an SMS

2011-06-20 Thread Karthik
Hello- Our app processes SMS'es meant for it. However, such SMS'es are also picked up by other SMS-based apps. And in this case, such SMS-based apps would display the SMS message meant for our app in clear text, and we don't want that to be seen. So, is there a way to exclusively send an SMS to a

[android-developers] Re: Does android os 2.1 support bluetooth printing

2011-06-20 Thread Simon Jackson
Should be something like 1. Find UUID of printer device service 2. Open encrypted rfcomm to already paired device (so don't need BT admin permission only BT permission) 3. Send byte stream over the socket 4. Close socket. You will need the escape codes for the printer too depending on if it does

[android-developers] Aw: Please help ----> geting error to send httpPost to server

2011-06-20 Thread jjoe64
you have to encode your url. Something like that: url = URLEncoder.encode(url, "UTF-8") -- 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

Re: [android-developers] TabHost and TabWidget ?

2011-06-20 Thread Simon Platten
Ok, Thank you for explaining that, I'll take a look. Regards, Sy On 20/06/2011 7:23 PM, Tor Norbye wrote: On Mon, Jun 20, 2011 at 11:06 AM, Simon Platten wrote: Thank you, I think I'll give it a miss in that case until its fixed for older API's, as I want to make the application available to

Re: [android-developers] constructor problem

2011-06-20 Thread TreKing
On Mon, Jun 20, 2011 at 1:03 PM, אריאל wrote: > 06-20 17:30:52.020: ERROR/AndroidRuntime(17614): > java.lang.RuntimeException: Unable to start activity > ComponentInfo{Hello.ariel/Hello.ariel.road}: java.lang.NullPointerException > Something is null. Use your debugger and LogCat to figure out wh

Re: [android-developers] TabHost and TabWidget ?

2011-06-20 Thread Tor Norbye
On Mon, Jun 20, 2011 at 11:06 AM, Simon Platten wrote: > Thank you, I think I'll give it a miss in that case until its fixed for > older API's, as I want to make the application available to a wider > audience. I think we're talking about different things. The TabHost should work just fine on al

Re: [android-developers] TabHost and TabWidget ?

2011-06-20 Thread Simon Platten
Thank you, I think I'll give it a miss in that case until its fixed for older API's, as I want to make the application available to a wider audience. On 20/06/2011 6:36 PM, Tor Norbye wrote: On Mon, Jun 20, 2011 at 10:26 AM, Simon Platten wrote: According to the Android link I posted earli

Re: [android-developers] constructor problem

2011-06-20 Thread אריאל
06-20 17:30:52.020: ERROR/AndroidRuntime(17614): java.lang.RuntimeException: Unable to start activity ComponentInfo{Hello.ariel/Hello.ariel.road}: java.lang.NullPointerException 2011/6/20 TreKing > On Mon, Jun 20, 2011 at 12:54 PM, אריאל wrote: > >> when i create a obj from this class i get th

Re: [android-developers] constructor problem

2011-06-20 Thread TreKing
On Mon, Jun 20, 2011 at 12:54 PM, אריאל wrote: > when i create a obj from this class i get the force close message > > what the problem with the constructor? > What does the LogCat say? - TreKing

Re: [android-developers] Re: Help Fixing a 9-patch

2011-06-20 Thread Kostya Vasilyev
The file is a nine-patch, and should fill the view automatically. And I'm sorry to say, it does that just fine for all my widgets. If you think the issue is with this particular file, you could try testing with one of the nine-patches under \platforms\android-X\data\res. Other than that, you coul

[android-developers] constructor problem

2011-06-20 Thread אריאל
hello sorry about my english... i have a class settingM: static SharedPreferences myPreferences; public final String PREF_FILE_NAME = "PrefFile"; public settingM() { myPreferences = getSharedPreferences(PREF_FILE_NAME, MODE_WORLD_READABLE); } when i create a obj from this class i get the fo

Re: [android-developers] TabHost and TabWidget ?

2011-06-20 Thread Tor Norbye
On Mon, Jun 20, 2011 at 10:26 AM, Simon Platten wrote: > According to the Android link I posted earlier, this functionality has been > available since version 1 of the API.  My target is currently set for > Android 2.1 > > http://developer.android.com/reference/android/widget/TabWidget.html > > To

[android-developers] Re: Help Fixing a 9-patch

2011-06-20 Thread Jake Colman
Kostya, The background is specified in XML exactly as you suggested. When I click and hold on the widget to drag it, Android's outline box is larger than the widget itself. If I write code to invoke setBackgroundColor() in lieu of setbackgroundresource() the color fills in a larger square than

Re: [android-developers] TabHost and TabWidget ?

2011-06-20 Thread Simon Platten
According to the Android link I posted earlier, this functionality has been available since version 1 of the API. My target is currently set for Android 2.1 http://developer.android.com/reference/android/widget/TabWidget.html Top right, "Since: API Level 1

Re: [android-developers] Acer A500 is not showing in DDMS

2011-06-20 Thread Rocky
HI thank for reply, I did all stuff, restart adb, eclipse, system and while installing i unplugged the the device. but still facing same problem. On Mon, Jun 20, 2011 at 10:43 PM, Marcin Orlowski wrote: > > On 18 June 2011 22:36, Rocky wrote: > >> Hi All, >> >> I install the proper driver from

Re: [android-developers] android sdk installation

2011-06-20 Thread TreKing
On Mon, Jun 20, 2011 at 9:12 AM, kaushik p wrote: > the problem is i am not able to deploy the application directly onto my > device . Please help me do this If that is the extent of the information you have to provide about your problem, you're never getting any help.

[android-developers] Re: Image Instance on Android

2011-06-20 Thread gaara
ok could i say i wanna to extract the Byte[] which contains the image's informations Peace, Gaara On Jun 20, 5:17 pm, TreKing wrote: > On Mon, Jun 20, 2011 at 6:25 AM, gaara wrote: > > I wanna know what's the result or the structure of the preview on Android. > > http://www.catb.org/~esr/faqs/sm

Re: [android-developers] Google Reader

2011-06-20 Thread TreKing
On Mon, Jun 20, 2011 at 8:51 AM, harsh chandel wrote: > I want to integrate Google reader in my application, Is there any api > available? > Al Gore invented the internet to answer these types of basic questions. --

Re: [android-developers] Where to fill bug/feature request agains Market console?

2011-06-20 Thread Chris
the second link, I mean. -- 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.com

Re: [android-developers] Where to fill bug/feature request agains Market console?

2011-06-20 Thread Chris
I used this once and got a reply from an actual human being within an hour. -- 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

Re: [android-developers] Image Instance on Android

2011-06-20 Thread TreKing
On Mon, Jun 20, 2011 at 6:25 AM, gaara wrote: > I wanna know what's the result or the structure of the preview on Android. > http://www.catb.org/~esr/faqs/smart-questions.html - TreKing

Re: [android-developers] which is the best way to change layout from server?

2011-06-20 Thread TreKing
On Mon, Jun 20, 2011 at 6:25 AM, Hitendrasinh Gohil < hitendra.virtuei...@gmail.com> wrote: > how can i set the layouts of an app from server. > i.e user having a account on web can select layout(images) from server > and that should be refleted in his app. > Write code to download layouts from a

Re: [android-developers] Acer A500 is not showing in DDMS

2011-06-20 Thread Marcin Orlowski
On 18 June 2011 22:36, Rocky wrote: > Hi All, > > I install the proper driver from Acer.com (USB > Driver_Acer_1.06.1500_A30H_A500) and did setting from > SEtting->Application->USB Debugging->yes > > But still my emulator DDMS not showing as a device. > Did i'm missing any setting. > My "copy" w

Re: [android-developers] Where to fill bug/feature request agains Market console?

2011-06-20 Thread Marcin Orlowski
On 20 June 2011 18:53, Kostya Vasilyev wrote: Hi > And specifially, this for Dev Console issues: I hoped there's something more serious than this infamous fill-this-form-and-we-wont-reply-anyway thing. Thanks. Regards, Marcin Orlowski *Tray Agenda * - keep you daily

Re: [android-developers] Where to fill bug/feature request agains Market console?

2011-06-20 Thread Kostya Vasilyev
Please see this: http://www.google.com/support/androidmarket/developer/bin/answer.py?answer=136601&hl=en And specifially, this for Dev Console issues: http://www.google.com/support/androidmarket/developer/bin/request.py?&contact_type=bugs -- Kostya 2011/6/20 Marcin Orlowski > Hi, > > Is ther

[android-developers] Where to fill bug/feature request agains Market console?

2011-06-20 Thread Marcin Orlowski
Hi, Is there any place Market team reads I could use to share my thoughts on it? It's quite frustrating that most likely Market ecosystem devs seem not to use Market as device devs otherwise these two "features" (among others) would hit them quickly: - setting price of paid apps is broken - assum

Re: [android-developers] In-App Billing

2011-06-20 Thread Kostya Vasilyev
Yeah, that link is broken for me as well, but your second link is actually the same help content, just linked differently. The Droid Incredible is about a year old, there is no way it could have Market 2.3 in its original firmware, as that only started to show up in February (IIRC) of this year. H

Re: [android-developers] Re: Help Fixing a 9-patch

2011-06-20 Thread Kostya Vasilyev
I just dropped the image into my project, and set it as an android:background for a layout (activity, not wiget). It worked fine. It's a good sign that your widget is getting filled with color - perhaps there is something unusual about how you set the background? I would try the simplest thing p

[android-developers] Re: Help Fixing a 9-patch

2011-06-20 Thread Jake Colman
Using some new preference settings in my widget, the user can completely replace the background image with a color. When I do that, the painted area is quite a bit larger than the area covered when I use the background image. I think that is the equivalent of what you asked me to check, correct?

Re: [android-developers] Re: Camera bitmap too small

2011-06-20 Thread J Handal
Hi Fina, and new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE); But doesn't store the picture in the native App "Gallery" I'm using the Motorola Xoom and 3.0 THX a lot . -- You received this message because you are subscribed to the Google Groups "Android Developers" grou

[android-developers] In-App Billing

2011-06-20 Thread Ryan Mattison
Hello, I'm currently looking at using the in-app billing process, and a few things worry me. On - http://developer.android.com/guide/market/billing/billing_overview.html If your device is running Android 3.0, in-app billing requires version 5.0.12 (or higher) of the MyApps application. If your d

[android-developers] Please help ----> geting error to send httpPost to server

2011-06-20 Thread Rocky
hi all, I'm getting error while sending data to server 06-20 21:19:35.796: WARN/System.err(374): java.lang.IllegalArgumentException: Illegal character in query at index 93: http://79.11.13.17/RestaurantPOSNew/ProcessOrder.aspx?order_id=4&table_no=14&order_items=[{ "OrderID":3,"isAdd":true,"itemId

[android-developers] Re: Strange device?

2011-06-20 Thread Dan
My bet is the Motoroal Ruth/Flipout http://phandroid.com/motorola-flipout/ On Jun 19, 6:56 pm, Zsolt Vasvari wrote: > As part of my app, if I notice a screen size/DPI combo I haven't > tested on, I pop-up a dialog and ask the user to send me an e-mail > about that. > > Here's what I got yesterda

Re: [android-developers] Help Fixing a 9-patch

2011-06-20 Thread Kostya Vasilyev
It looks fine, and enlarges properly in draw9patch. Are you certain the layout where it's used as the background actually gets larger width and / or height? Try setting android:background="#FF008040" or some such to check. -- Kostya 2011/6/20 Nikolay Elenkov > On Mon, Jun 20, 2011 at 11:06 PM

[android-developers] Java Developer || Wilmington, De || 6+ Month Contract (Local Only )

2011-06-20 Thread Steven Smith
Hi *Business Partner,* Hope you are doing well today, This is *Steven Smith* from *Panzer Solutions* looking for *Java Developer*for our client in *Wilmington, DE(Loca)*. Please let me know if you have anyone available for the below position. *Job Title : Java Developer Location : Wilmington, D

Re: [android-developers] Help Fixing a 9-patch

2011-06-20 Thread Nikolay Elenkov
On Mon, Jun 20, 2011 at 11:06 PM, Jake Colman wrote: > > I realize that this is not a programming question but I'm hoping someone > here can help with a quick solution. > > I have a 9-patch file that I use as my widget background.  I did not > create it, I found it on the web.  I am using the imag

[android-developers] Re: Help Fixing a 9-patch

2011-06-20 Thread ThaMe90
What exactly is your problem? On 20 jun, 16:06, Jake Colman wrote: > I realize that this is not a programming question but I'm hoping someone > here can help with a quick solution. > > I have a 9-patch file that I use as my widget background.  I did not > create it, I found it on the web.  I am us

[android-developers] Re: GAE and Android

2011-06-20 Thread gaara
Thanks for replay, i wanna ask a question how can i check that i have setup GAE correctly!!! Peace, Gaara On Jun 20, 1:59 pm, JP wrote: > As far as I can tell the significant log is: > > 06-20 09:18:08.952: ERROR/AndroidRuntime(359): Internal Server Error > (500) - Internal Server Error > > The A

Re: [android-developers] TabHost and TabWidget ?

2011-06-20 Thread Tor Norbye
This should be fixed in the newer rendering libraries. So either try changing the rendering target (a combobox in the configuration chooser above the layout editor) to 3.0 or 3.1, or, install the preview versions of the backports of the layout library to 2.x - see http://tools.android.com/download

[android-developers] android sdk installation

2011-06-20 Thread kaushik p
Hi all I recently installed a new copy of android sdk on my new laptop . I used the same procedure to install it but the problem is i am not able to deploy the application directly onto my device . Please help me do this . On the emulator its working perfect . -- Thanks&Regards Kaushik Pendurthi

[android-developers] Re: textview and unicode

2011-06-20 Thread Yahel
As Zsolt and Kostya already told you Android won't have a font that includes such special characters. The one you seem to want to use looks like a printer thingy. If you are trying to use unicode characters as icons then you'd better start using Pngs for your icons. Including a font that would hol

[android-developers] Help Fixing a 9-patch

2011-06-20 Thread Jake Colman
I realize that this is not a programming question but I'm hoping someone here can help with a quick solution. I have a 9-patch file that I use as my widget background. I did not create it, I found it on the web. I am using the image as both a 1x1 and 2x1 background depending on the widget size.

[android-developers] Re: GAE and Android

2011-06-20 Thread JP
As far as I can tell the significant log is: 06-20 09:18:08.952: ERROR/AndroidRuntime(359): Internal Server Error (500) - Internal Server Error The Android http client reached out to the web server which read back a 500 error. Happens on occasion. Either you haven't set up your GAE app correctly

[android-developers] Google Reader

2011-06-20 Thread harsh chandel
I want to integrate Google reader in my application, Is there any api available? Or please suggest me a suitable way to do that. -- 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@google

Re: [android-developers] Aw: SQLiteOpenHelper

2011-06-20 Thread Jorge Luis
Actually my problem was all over the query, i did a rawQuery and worked fine Bazinga! :P -- 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 g

[android-developers] Re: Setting Drawable Background Color

2011-06-20 Thread Zsolt Vasvari
To color a B&W image, I use setColorFilter(color, Mode.MULTIPLY)) On Jun 20, 9:42 pm, Jake Colman wrote: > Given that I have an integer value representing a color with an included > alpha (opacity) value, how do I set that value in a drawable in order > to change its background? > > The Drawable

Re: [android-developers] Aw: SQLiteOpenHelper

2011-06-20 Thread Jonas Gehring
does the insert call, returns 1 or 0 ? it should return 1, otherwise there's an error. the query looks okay for me. try to query without any filter? just DB.query("Notas", null, null, null, null, null, null) ... 2011/6/20 Jorge Luis > It both does work. > > Is there somethign wrong with this qu

Re: [android-developers] Aw: SQLiteOpenHelper

2011-06-20 Thread Jonas Gehring
does the insert call, returns 1 or 0 ? it should return 1, otherwise there's an error. the query looks okay for me. try to query without any filter? just DB.query("Notas", null, null, null, null, null, null) ... 2011/6/20 Jorge Luis > It both does work. > > Is there somethign wrong with this qu

[android-developers] Setting Drawable Background Color

2011-06-20 Thread Jake Colman
Given that I have an integer value representing a color with an included alpha (opacity) value, how do I set that value in a drawable in order to change its background? The Drawable setColorFilter() method takes a color value and a color filter. This method sounds promising since it accepts a co

Re: [android-developers] Aw: SQLiteOpenHelper

2011-06-20 Thread Jorge Luis
It both does work. Is there somethign wrong with this query? Cursor r = DB.query("Notas", (new String[]{"Nota"}), null, (new String[]{"fgCompromisso=0"}), null, null, null); 2011/6/20 jjoe64 > hi > > first, you should have a look at logcat. > did you set up your db helper properly (constructor

[android-developers] Get Byte[] as a result of the preview with Android Camera

2011-06-20 Thread gaara
Hi group, how to get the Byte[] from the camera on Android, which method or which parameter can help me to do that;; Peace, Gaara -- 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@google

[android-developers] Aw: SQLiteOpenHelper

2011-06-20 Thread jjoe64
hi first, you should have a look at logcat. did you set up your db helper properly (constructor must call super-constructor, oncreate must create the table(s))? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send e

[android-developers] Re: textview and unicode

2011-06-20 Thread Zsolt Vasvari
That glyph isn't even in standard Windows fonts, so I'd say, no, the Android font won't have it. There is an app called Unicode Map, and it shows the square. So you are out of luck. If you want to display it, you will need to use your own font. On Jun 20, 8:51 pm, dashman wrote: > > Maybe bec

[android-developers] Re: Any way Application Publisher get to know details on users who bought the application from Market?

2011-06-20 Thread vaidyanet
Thanks for the reply. On Jun 18, 2:39 am, Paulo Morandi wrote: > Humm.. I don't think you can do such thing.. but do you think that > your solution will successfully detects if the user is "cheating"? I > think if they can break the google's verification, they will break > yours also.. I don't th

<    1   2   3   >