Re: [android-developers] Need Help

2011-12-28 Thread vandana toshniwal
I have already given u the piece of code what else do u want? On 28 December 2011 13:10, chowdary nani naveenneeli...@gmail.com wrote: Hi, Thanks for replay will you please help me by brief example On Wed, Dec 28, 2011 at 12:47 PM, vandana toshniwal vandanatoshni...@gmail.com wrote:

[android-developers] Re: Android emulator help !!!

2011-12-28 Thread Ali Chousein
dear ,, Hello dear Please could some ones of you help me how to run voice search on Android emulator .. please i spent 10 days looking to solve the problem ( audio problem ) .. i installed the app ... but i always have and audio problem ... Are you looking for microphone support under

[android-developers] [android-developer] I want to go on my activity class from broadcastreceiver

2011-12-28 Thread surabhi jain
hii I have created two activity classes in one class i have registerd receiver and in another activity class i am simply showing image I want to go to my activity class from broadcastreceiver and the code which i have write in broadcastreceiver class is

Re: [android-developers] Re: how can we get the notification of sending message

2011-12-28 Thread surabhi jain
thank you -- 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

Re: [android-developers] [android-developer] I want to go on my activity class from broadcastreceiver

2011-12-28 Thread Mukesh Srivastav
When u say SMS Receiver, u must have a SMSReceiver class as well which extends the BroadcastReceiver. In public void onReceive(final Context context, Intent intent) method u can call your intent as simple as that. Warm Regards, *Mukesh Kumar*, Android Consultant/Freelancer, India,Hyderabad.

[android-developers] Re: [android-developer] I want to go on my activity class from broadcastreceiver

2011-12-28 Thread skink
surabhi jain wrote: hii logcat shows everythig you need to do: Calling startActivity() from outside of an Activity context requires the FLAG_ACTIVITY _NEW_ TASK flag. Is this really what you want? pskink -- You received this message because you are subscribed to the Google Groups

[android-developers] Map Not working

2011-12-28 Thread Kiran Kumar Kendole
Hey All , I have generated my google API key and tried to run the app, but i see some exceptions.. ERROR : *12-28 06:03:42.462: E/AndroidRuntime(305): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.ta.coe/com.ta.coe.AndroGMapActivity}: android.view.InflateException:

Re: [android-developers] Map Not working

2011-12-28 Thread Mukesh Srivastav
can u please also show the cod snippet of the activity that will help us to understand. Warm Regards, *Mukesh Kumar*, Android Consultant/Freelancer, India,Hyderabad. On Wed, Dec 28, 2011 at 4:37 PM, Kiran Kumar Kendole k.kirankumar1...@gmail.com wrote: Hey All , I have generated my google

Re: [android-developers] Map Not working

2011-12-28 Thread Kiran Kumar Kendole
Theres nothing in the Activity.. I am just adding main to the activity layout. Code : public class AndroGMapActivity extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) {

Re: [android-developers] Re: uploading to the google cloud service

2011-12-28 Thread John Goche
Thanks Bali, However it seems you still have to have a server out there to be able to use C2DM. I was wondering whether the server that talks to the C2DM server can also be hosted by google somewhere so you don't have to pay the fees to set up a dedicated server and use google as a data store

Re: [android-developers] Map Not working

2011-12-28 Thread Mukesh Srivastav
The Map tag is incorrect. it should start with your application pacakge with activity name, that solve your issue. some thing like this. com.kiran.map. AndroGMapActivity android:id=@+id/mapView android:layout_width=fill_parent android:layout_height=fill_parent

[android-developers] Re: I want to go on my activity class from broadcastreceiver

2011-12-28 Thread Twinkle
I have write above code in onReceive method with FLAG_ACTIVITY_NEW_TASK then i have got the error is Caused by: android.util.AndroidRuntimeException: Calling startActivity() from outside of an Activity context requires the FLAG_ACTIVITY_NEW_TASK flag. Is this really what you want? what is the

Re: [android-developers] Re: Spinner spinning twice...

2011-12-28 Thread Mark Murphy
On Tue, Dec 27, 2011 at 8:35 PM, havexz bali.param...@gmail.com wrote: You are assuming that it is the same Spinner object and the same OnItemSelectedListener. Instead, it is a completely different Spinner instance and a completely different OnItemSelectedListener instance, for a completely

[android-developers] Monitoring for outgoing Bluetooth headset originated calls.

2011-12-28 Thread MarkG123
Hi, NewB question time! I have done activity based Android apps without a problem, however I want to write an application that monitors for outgoing calls from my Bluetoooth header using BroadcastReciever (I am trying to remap the call button on my Bluetooth headset to be a mediaplayer play/pause

[android-developers] Re: Where is the import android.hardware.CameraDevice

2011-12-28 Thread kumud
Madhu Bhilwadi bhilwadi.madhu at gmail.com writes: As by my knowledge it is in version 2.1 and u should have avd support for camera and also need to implement jmf (java media framework) .and proper drivers for the camera supportthanq android.hardware.CameraDevice has been changed to

Re: [android-developers] Map Not working

2011-12-28 Thread Kiran Kumar Kendole
Yeah Mukesh , Even i tried that way.. no use. Same exception com.google.android.maps.MapView android:id=@+id/mapView android:layout_width=fill_parent android:layout_height=fill_parent android:apiKey=0aaOjcXTpAupegMXRF0rhA0kAgMbx4AKlyZJJjQ

Re: [android-developers] Map Not working

2011-12-28 Thread Mark Murphy
You are running on a device or emulator that does not have the Google Maps add-on for Android. On Wed, Dec 28, 2011 at 8:29 AM, Kiran Kumar Kendole k.kirankumar1...@gmail.com wrote: Yeah Mukesh ,  Even i tried that way.. no use. Same exception  com.google.android.maps.MapView        

Re: [android-developers] Map Not working

2011-12-28 Thread Kiran Kumar Kendole
Mark, Could you please let me know some more info on this. becuase i can see all the *Google APIs by Google Inc.*for all verstions* *in my Android SDK manager. Thanks, KIRANKUMARKENDOLE On Wed, Dec 28, 2011 at 8:33 AM, Mark Murphy mmur...@commonsware.comwrote: You are running on a device or

Re: [android-developers] Map Not working

2011-12-28 Thread T.M.S.VIJAYKUMARR
Hello KIRANKUMARKENDOLE, you should extends with *MapActivity* not *activity*. like *class MapActivity extends MapActivity* On Wed, Dec 28, 2011 at 7:03 PM, Mark Murphy mmur...@commonsware.comwrote: You are running on a device or emulator that does not have the Google Maps add-on for Android.

Re: [android-developers] Map Not working

2011-12-28 Thread Mark Murphy
On Wed, Dec 28, 2011 at 8:44 AM, Kiran Kumar Kendole k.kirankumar1...@gmail.com wrote: Mark, Could you please let me know some more info on this. becuase i can see all the Google APIs by Google Inc.for all verstions in my Android SDK manager. OK. Make sure you have the uses-library element

[android-developers] addProximityAlert ???

2011-12-28 Thread coollearner
Hi Android Developers, I have been spending weeks to do my personal project as I am new to Android programming. I want to develop an client app which calls the LocationManager and listens and update the coordinates.(I think i figured this out already) I will use this app while driving. Once I

[android-developers] Re: Monitoring for outgoing Bluetooth headset originated calls.

2011-12-28 Thread Naeem
Please look at following Android help documentation link http://developer.android.com/reference/android/telephony/TelephonyManager.html Whether you start a call from BT headset or not the telephony related events will always be the same. You'll need phone state permissions and a sub class of

[android-developers] Is there any problem with this app description?

2011-12-28 Thread Zwiebel
Good afternoon! I know that it is not exactly connected to this topic, but it is developer connected, so... I have a program, which has a long description. It is not a problem. But there is somebody who writes to me again, and again. He writes to me that it has to much rank gaining up words. Like

[android-developers] clarification: SD card

2011-12-28 Thread John Goche
Hello, This may sound like a stupid question but when in the android literature external storage or the SD card is mentioned is the literature actually referring to the SIM (Subscriber Identity Module) card which also stores the phone's phone number? I don't see any other detatchable external

[android-developers] Re: Monitoring for outgoing Bluetooth headset originated calls.

2011-12-28 Thread MarkG123
Is there an easy way to differentiate a local initiated call and a BT headset initiated one? On Dec 28, 3:15 pm, Naeem naeem.akram.ma...@gmail.com wrote: Please look at following Android help documentation link http://developer.android.com/reference/android/telephony/TelephonyMan... Whether

Re: [android-developers] clarification: SD card

2011-12-28 Thread Mark Murphy
On Wed, Dec 28, 2011 at 10:24 AM, John Goche johngoch...@googlemail.com wrote: This may sound like a stupid question but when in the android literature external storage or the SD card is mentioned is the literature actually referring to the SIM (Subscriber Identity Module) card which also

[android-developers] Change action bar to transparent color to work on both Android 2 and Android 3

2011-12-28 Thread yccheok
I get this nice piece of code from http://developer.android.com/resources/samples/ActionBarCompat/index.html, which able to make ActionBar GUI on both Android 2 and Android 3 platform. However, I was wondering, had anyone tried to change the color of ActionBar. Note that, the following code will

[android-developers] Compass not working on some 2.2 devices

2011-12-28 Thread Bill Tschumy
We recently released an Android port of an iPhone app. The app relies on the digital compass for some features. This has been working well on most devices, but there are a few where the compass is not working. It seems the device is not feeding us any onSensorChanged() messages after we

Re: [android-developers] Is there any problem with this app description?

2011-12-28 Thread TreKing
On Wed, Dec 28, 2011 at 9:21 AM, Zwiebel hunzwie...@gmail.com wrote: But there is somebody who writes to me again, and again. He writes to me that it has to much rank gaining up words. Who's he? -

[android-developers] Re: Is there any problem with this app description?

2011-12-28 Thread Zwiebel
I don't know who he is, but it's not the first time. Is there any problem with the description? What do you think? On dec. 28, 16:42, TreKing treking...@gmail.com wrote: On Wed, Dec 28, 2011 at 9:21 AM, Zwiebel hunzwie...@gmail.com wrote: But there is somebody who writes to me again, and

[android-developers] Re: Is there any problem with this app description?

2011-12-28 Thread Zwiebel
In my opinion he isn't a member of the android team, if your question was related to this. :) On dec. 28, 16:51, Zwiebel hunzwie...@gmail.com wrote: I don't know who he is, but it's not the first time. Is there any problem with the description? What do you think? On dec. 28, 16:42, TreKing

[android-developers] Re: Map Not working

2011-12-28 Thread Znaz
If the problem is that it is not showing the map, then try adding this line to your onCreate method (it is from a tutorial): On Dec 28, 6:14 am, Kiran Kumar Kendole k.kirankumar1...@gmail.com wrote: Theres nothing in the Activity.. I am just adding main to the activity layout. Code :

[android-developers] Re: Map Not working

2011-12-28 Thread Znaz
If the problem is in showing the map, try adding this line to your onCreate method (from an Android tutorial): MapView mapView = (MapView) findViewById(R.id.mapview); Hope this helps! On Dec 28, 6:14 am, Kiran Kumar Kendole k.kirankumar1...@gmail.com wrote: Theres nothing in the

Re: [android-developers] Re: Is there any problem with this app description?

2011-12-28 Thread TreKing
On Wed, Dec 28, 2011 at 10:51 AM, Zwiebel hunzwie...@gmail.com wrote: I don't know who he is, but it's not the first time. Is there any problem with the description? What do you think? I think you should ask him who the hell he is to tell you that. :)

[android-developers] Re: creating custom listview with radio buttons

2011-12-28 Thread Vendetta
Hi, If you have different options for the same questions then radiogroup is the best option. You can take a look at the link for programmatically adding stuff to your listview. You will have to inflate your own UI from XML file in getview method.

[android-developers] Re: uploading to the google cloud service

2011-12-28 Thread havexz
BTW ...reading your question again...looks like you are looking for Backing up App Data and then restoring it on different device. So this is what I think you want: http://developer.android.com/guide/topics/data/backup.html On Dec 28, 5:29 am, John Goche johngoch...@googlemail.com wrote:

[android-developers] Re: Toast messages very small on Galaxy Nexus for Launcher2 fork

2011-12-28 Thread powder366
My toast is extremely small on ICS, worked perfect on previous releases. Also see http://stackoverflow.com/questions/8658059/android-toast-notification-is-too-small-in-ice-cream-sandwich Anyone? On Dec 13, 3:43 pm, David Strickland d.strickl...@gmail.com wrote: If you're modifying the

[android-developers] Re: Spinner spinning twice...

2011-12-28 Thread havexz
Well I got your point on creation. So I did some more digging/ experimentation and am pretty sure it is calling on the same Activity and same Spinner instance i.e. the newly created instance after the orientation change. I did this by putting a count in activity and also printing the references.

[android-developers] Re: Is there any problem with this app description?

2011-12-28 Thread Zwiebel
:D I only asked it because he warned me, that he will report me to the Android Market team, if I don't delete these words... But I hope that these are not problems... On dec. 28, 18:19, TreKing treking...@gmail.com wrote: On Wed, Dec 28, 2011 at 10:51 AM, Zwiebel hunzwie...@gmail.com wrote: I

Re: [android-developers] Re: Is there any problem with this app description?

2011-12-28 Thread TreKing
On Wed, Dec 28, 2011 at 12:45 PM, Zwiebel hunzwie...@gmail.com wrote: I only asked it because he warned me, that he will report me to the Android Market team, if I don't delete these words... But I hope that these are not problems... I'm no authority, but I would not worry about it. He's

[android-developers] Re: Is there any problem with this app description?

2011-12-28 Thread Zwiebel
xD On dec. 28, 19:53, TreKing treking...@gmail.com wrote: On Wed, Dec 28, 2011 at 12:45 PM, Zwiebel hunzwie...@gmail.com wrote: I only asked it because he warned me, that he will report me to the Android Market team, if I don't delete these words... But I hope that these are not

[android-developers] Duplicate contacts are read.

2011-12-28 Thread nikki
Hi Group, Please help me, I am trying to read the native phonebook. I have used Cursor cursor = cr.query(ContactsContract.Contacts.CONTENT_URI,null, null, null, ContactsContract.Contacts.DISPLAY_NAME + COLLATE LOCALIZED ASC); to get all the contact ID. Based on the ID I am fetching other

[android-developers] Difference between HelloCompute example (RenderScript) in Honeycomb and Ice Cream Sandwich

2011-12-28 Thread Vinay
Hi, The HelloCompute example in Honeycomb uses rsForEach() call explicitly but in Ice Cream Sandwich, it is not called explicitly. I understand that in Ice Cream Sandwich we use forEach_root() which then uses forEach(). Can anybody please explain the difference? Thanks in advance. -Vinay -- You

[android-developers] In App Billing RESULT_ERROR

2011-12-28 Thread develo...@pawprintgames.com
Hi there, I recently launched an application on the Android Market which includes In App Billing. I have tested this functionality both whilst developing, using a test account and once the application went live on the market (using a non test account, on a completely different mobile phone) and

[android-developers] How to show development settings?

2011-12-28 Thread be1ay
My code Intent intent = new Intent(Settings.ACTION_APPLICATION_DEVELOPMENT_SETTINGS); startActivity(intent); error android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.settings.APPLICATION_DEVELOPMENT_SETTINGS } -- You received this message

[android-developers] USB tethering cannot be selected

2011-12-28 Thread 香 茶
1.Connect to PC all the time via USB. 2.Factory reset DUT. 3.After go to OS-Go to Settings-Wireless networks-Tethering portable hotspot,check USB tethering. 4.Slide notification bar,check the prompt about USB. 5.Go to Settings-Applications-Development-Unselect USB debugging- Select USB

[android-developers] In-App: get Product list

2011-12-28 Thread MG-DE
Hi, I'm developing an app with in app purchase. Now I have the problem that there is no chance to get a list of all in app products from the Android Market. Is there no possibility to request the Market for the informations like title, description and price(!)? Why do I define informations

[android-developers] SoundPool problem (SDK 4.0.x) int loop any value other than zero causes crash

2011-12-28 Thread Bluesboyno1
Hi, I wonder if anyone can help. I'm using Android 4.0.x development kit Win 7 64 bit development platform using the code as supplied in http://www.droidnova.com/creating-sound-effects-in-android-part-1,570.html which contains SoundPool examples I've also tried out my own testing using

[android-developers] Looking to hire a developer for an Android app

2011-12-28 Thread butchyon
Wasn't sure is this was the correct place to post this, so my apologies if it isn't. I have an artist friend who is looking for a developer to create a professional Android phone wallpaper app (not a free one) to place in the Android Market. He simply is so busy he does not have the time to do

[android-developers] singleTask launchMode

2011-12-28 Thread ori
Hi, I have a game application which consists one main activity called GameActivity and a CreateAccountActivity (I have more but they are not relevant). the GameActivity i defined to be singleTask, because I want only on instance of this main activity. when the game launches for the first time,

[android-developers] KSOAP2 + ANDROID - Consumir WS .NET

2011-12-28 Thread cassiano_android
Bom dia, Não consigo comunicação com o WS. O metodo: androidHttpTransport.call(SOAP_ACTION_LOGIN, envelope); não executa. Segue meu codigo java: package br.login; import java.io.IOException; import org.ksoap2.SoapEnvelope; import org.ksoap2.serialization.SoapObject; import

[android-developers] Show settings to allow configuration of application development-related settings.

2011-12-28 Thread be1ay
My code: Intent intent = new Intent(Settings.ACTION_APPLICATION_DEVELOPMENT_SETTINGS); startActivity(intent); error: android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.settings.APPLICATION_DEVELOPMENT_SETTINGS } What's wrong? -- You

[android-developers] How to accept automatically call

2011-12-28 Thread bigboss59400
Hello all, I researched and tested for now 1 week and nothing succes about accept call automatically. So I want to know if somebody has done this or can help me. Thanks for all. PS : I think we must use ITelephony.aidl (so the appli works 2.3) and a broadcast receiver and simulate a keydown

[android-developers] no media found on emulator as well as real devices

2011-12-28 Thread android dev
hi i use Gallery in xml layout file and all images are placed in /res/ drawable folder but after running project.no media found error is given on emulator screen plz help me thanks -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to

[android-developers] Re: Is there any problem with this app description?

2011-12-28 Thread David
Yes. Can you make any tests in the world? That sentence doesn't make a lot of sense. Maybe it should be, can you ace any test in the world or can you take any test in the world. Do you have very big IQ? Should be Do you have a very big IQ? You may want someone that has better english skills to

[android-developers] OpenGLES Double Buffer malfunctions

2011-12-28 Thread Bram Stolk
Hi, I am experience flicker in the visuals, which after some investigation, turns out to be caused by drawing taking place in the FRONT buffer, instead of the BACK buffer. I've found this old thread on this issue:

[android-developers] WIFI Architecture in Android

2011-12-28 Thread nikhil
Any one here can help me in learning wifi architecture in android. I went through some links on Internet but those were not much useful. Please help me in finding the flow from application to kernel. -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] native code bebug

2011-12-28 Thread praveen.bvb...@gmail.com
Hi all, I need the procedure to debug native source code of Android. Its not like i am developing an application which uses native code. I want to debug the native code for applications which Android provides by default. Somebody please help me. Thank you in advance. -- You received this

Re: [android-developers] Android Developing tech problems

2011-12-28 Thread watjb85
Please provide more information... On Mon, Dec 26, 2011 at 10:32 PM, Mike Taylor jeromeyoungvis...@gmail.comwrote: I'm trying to download the needed files to develope an application on my computer and having a difficult time with the eclipse part of it and connecting it to the plugins? --

[android-developers] Retriving the Contact number and name to the Edit text

2011-12-28 Thread Bharath kumar Thota
Hii, I am trying to get the contact number from the list of contacts and send that particular contact to the edit text field.Can any one please help me in this regard.Thanks in advance. -- You received this message because you are subscribed to the Google Groups Android Developers group. To

[android-developers] Configuring global proxy from code

2011-12-28 Thread Arka Sharma
I have a requirement like as following if(condition){ //configure the proxy so that all user traffic from browser goes through the configured proxy server } I am able to browse the web from the emulator after I configure the proxy from settings - wireless network - Mobile network - Access Point

[android-developers] Is it possible implement an Android spinner with out using the XML layout file ?

2011-12-28 Thread Sreejith
Is it possible implement an Android spinner with out using the XML layout file ? In all examples their is a use of an XML file reference (like android.R.layout.simple_spinner_item) for setAdapter function usage.If not can anybody please mention the reason ? -- You received this message because

[android-developers] Small Typo Error

2011-12-28 Thread Yoganandh Jaan
There is small typo error in your blog which needs your attention In http://code.google.com/p/apps-for-android/ under* Links* - *Groups* - Android Developers Grouphttp://groups.google.com/group/android-developer The link is http://groups.google.com/group/android-developer

Re: [android-developers] Re: App force closes after adding more than 3 markers

2011-12-28 Thread Shubhangi
can you mail your code so that we'll see to it and let you know what may be the problem On Wed, Dec 28, 2011 at 12:45 PM, Anil Jagtap anil.so...@gmail.com wrote: May be an array have only 3 elements hard coded. On Dec 24, 10:58 pm, Znaz zehra...@college.harvard.edu wrote: I am making

[android-developers] Ad hoc Wifi on none rooted devices.

2011-12-28 Thread David
I am just wondering if there is some way to use wifi to send data between devices without having root. I am not thinking of tethering but more sending data from one device to the other over wifi. Yes I know that Bluetooth will work for this but I was hoping for more bandwidth and range using wifi.

Re: [android-developers] Ad hoc Wifi on none rooted devices.

2011-12-28 Thread Kostya Vasilyev
Android 4.0+ has new a technology piece, WiFi Direct: http://developer.android.com/sdk/android-4.0.html Looks quite promising. For previous Android versions, the state of AdHoc WiFi support is described here: http://code.google.com/p/android/issues/detail?id=82 I suppose you could ask every

Re: [android-developers] How to show development settings?

2011-12-28 Thread Mark Murphy
Where did you test this -- emulator (in which case, which SDK version?) or device (in which case, which one)? On Wed, Dec 28, 2011 at 2:38 AM, be1ay mailbel...@gmail.com wrote: My code Intent intent = new Intent(Settings.ACTION_APPLICATION_DEVELOPMENT_SETTINGS);        

Re: [android-developers] Compass not working on some 2.2 devices

2011-12-28 Thread Bill Tschumy
I did figure this out. Turns out that in 2.2 you can't use sensor rates other than the standard SENSOR_DELAY_UI, SENSOR_DELAY_NORMAL, etc. The documentation claims you can also specify the number of microseconds between notifications, but they are lying. Once I used the standard constants it

Re: [android-developers] WIFI Architecture in Android

2011-12-28 Thread TreKing
On Wed, Dec 28, 2011 at 6:13 AM, nikhil nekhil...@gmail.com wrote: Any one here can help me in learning wifi architecture in android. Help you how? Please help me in finding the flow from application to kernel. Read the source code.

[android-developers] Re: Can't see Hello World on hello_avd screen ?????????

2011-12-28 Thread Albert Pi
Sander, I am not seeing hello, android in my emulator and I waited more than 20 mints also restart emulator three times. Need help ??? [2011-12-28 15:21:43 - HelloLinearLayout] -- [2011-12-28 15:21:43 - HelloLinearLayout] Android Launch! [2011-12-28

[android-developers] Re: OpenGL ES 2.0 for Android

2011-12-28 Thread bob
Thanks for the link. I was looking for a free copy of the orange book. On Dec 27, 11:52 pm, Indicator Veritatis mej1...@yahoo.com wrote: I'll take your word on that one, since I haven't had time to look at at that thoroughly myself yet; but I do know that a genuine must read is The Orange

Re: [android-developers] Re: uploading to the google cloud service

2011-12-28 Thread John Goche
Thank you for your reply, However I see the following note on the page you posted: The backup service is *not* designed for synchronizing application data with other clients So it seems the only way to sync application data is to deploy one's own server software and hope the user is willing to

[android-developers] ICS Listview Selector

2011-12-28 Thread authorwjf
Howdy UI Gurus! I am having an issue with a custom list selector. I tried to whittle the code down to a very small subset that runs independently of my project in hopes someone more familiar with the UI framework than I could assist. Basically, I have a custom selector I have been using for

Re: [android-developers] Re: uploading to the google cloud service

2011-12-28 Thread Studio LFP
You may be thinking about Google App Engine. https://appengine.google.com There is a free option with a set quota that you can pay to increase. Steven Studio LFP http://www.studio-lfp.com -- You received this message because you are subscribed to the Google Groups Android Developers group.

[android-developers] Why is my program not correctly writing to my database?

2011-12-28 Thread Jeresam515
I did the notepad tutorials, and am using a modified version of that for my database. I don't understand why my program isn't correctly writing to it. Help would be greatly appreciated. package com.drawing; import android.content.ContentValues; import android.content.Context; import

Re: [android-developers] Why is my program not correctly writing to my database?

2011-12-28 Thread Kostya Vasilyev
Are all these supposed to be mapped to the same column, _id, or is this a copy / paste artifact? public static final String KEY_ROWID = _id; public static final String KEY_X = _id; public static final String KEY_Y = _id; public static final String KEY_Size = _id; 29 декабря 2011 г.

[android-developers] Why is my app not writing correctly to my SQL server?

2011-12-28 Thread Jeresam515
I did the notepad tutorials and my SQL server is a modified version of that. For some reason my app is not writing to it correctly. Any help would be greatly appreciated. package com.drawing; import android.content.ContentValues; import android.content.Context; import android.database.Cursor;

[android-developers] Why isn't my SQL database working correctly?

2011-12-28 Thread Jeresam515
I did the notepad tutorials and my SQL server is a modified version of that. For some reason my app is not writing to it correctly. Any help would be greatly appreciated. package com.drawing; import android.content.ContentValues; import android.content.Context; import android.database.Cursor;

[android-developers] Re: emulator: WARNING: Unable to create sensors port: Unknown error

2011-12-28 Thread OpaSmurf
Hello, Android fails to display in avd. AVD displays and animates. After ~34 minutes get “Failed to install HiDroid.apk”. Should I not expect text from “http://developer.android.com/resources/tutorials/ hello-world.html” to display on screen? Possibly relevant messages are : WARNING: Unable to

Re: [android-developers] Re: Can't see Hello World on hello_avd screen ?????????

2011-12-28 Thread James Black
Under the Debug perspective, look for LogCat, and double click on that tab, and see if there are any errors that may be causing it to crash early, or not start. On Wed, Dec 28, 2011 at 3:33 PM, Albert Pi albertpi0...@gmail.comg wrote: Sander, I am not seeing hello, android in my emulator and

[android-developers] Re: Can't see Hello World on hello_avd screen ?????????

2011-12-28 Thread OpaSmurf
Hello, Android fails to display in avd. AVD displays and animates. After ~34 minutes get “Failed to install HiDroid.apk”. Should I expect text from “http://developer.android.com/resources/tutorials/ hello-world.html” to display on screen? Also replied to: Unable to create sensors port

[android-developers] Re: App force closes after adding more than 3 markers

2011-12-28 Thread Znaz
Thank you for trying to help. I have no idea what it was, but I think it had to do with interpreting JSON data over and over again that caused the app to crash. I fixed that problem and now the app can display a lot more than 3 markers. On Dec 28, 4:35 am, Shubhangi shubhangidesa...@gmail.com

[android-developers] Re: Found solutions

2011-12-28 Thread Indicator Veritatis
Well, Jim tnx fr the amusement, bt it is more fruitful to refer the OP to http://catb.org/~esr/faqs/smart-questions.html On Dec 27, 9:57 pm, Jim Graham spooky1...@gmail.com wrote: On Mon, Dec 26, 2011 at 03:02:32AM -0800, theinfor wrote: So, who anyone found solutions ? 42 I got the same

[android-developers] Re: ICS - checkbox style

2011-12-28 Thread dashman
using your suggestion, added this to my android v1.6 project (from the above link) style name=LightThemeSelector parent=android:Theme.Holo.Light ... /style i'm getting a syntax error on the theme name. i'm thinking because the project is built for v1.6 and the Holo theme is for a later

Re: [android-developers] Re: ICS - checkbox style

2011-12-28 Thread Mark Murphy
On Wed, Dec 28, 2011 at 8:17 PM, dashman erjdri...@gmail.com wrote: i'm trying to get a v1.6 compatible project - but if it happens to be running on a api 11+ ...use the holo theme. Have a res/values-v11/ directory that defines a theme that uses Theme.Holo.Light. Have a res/values/ directory

Re: [android-developers] Can't see Hello World on hello_avd screen ?????????

2011-12-28 Thread 王劲男
SDK中有文档吧。 2011/12/23 Albert Pi albertpi0...@gmail.com I use Eclipse 3.6.1 and Android 4.0.3 (API 15) on Windows XP/Dell optiplex 755 has 4GB Memory. I had no issue to compile Hello World program and to create my_avd. When I ran program, my emulator only took a few minutes to show up then I

[android-developers] Re: ICS - checkbox style

2011-12-28 Thread dashman
yes i have that. i have values folder with the followings styles.xml style name=LightThemeSelector parent=android:Theme.Light /style then i have values-v11 folder with the following styles.xml style name=LightThemeSelector parent=android:Theme.Holo.Light /style again i'm building the app

[android-developers] Re: ICS - checkbox style

2011-12-28 Thread dashman
getting following compile error message error: Error retrieving parent for item: No resource found that matches the given name 'android:Theme.Holo.Light'. -- 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: Configuring global proxy from code

2011-12-28 Thread kris
You cannot set a global proxy as you noticed that it is denied with permission. Only apps that are signed with the same certificate of the firmware can set the proxy(permission level 3). One thing that you can do is to set a per connection based proxy. You can set proxy separately for WIFI and

[android-developers] Regarding Twitter Integration.

2011-12-28 Thread yogendra G
Hi All, I need some help for integrating Twitter application to my own application. So how can it be done please give some sample examples so that i can login with username and password to twitter account at least. Thanks Regards, Yogendra G -- You received this message because you are

Re: [android-developers] Re: Found solutions

2011-12-28 Thread Jim Graham
On Wed, Dec 28, 2011 at 03:27:24PM -0800, Indicator Veritatis wrote: Well, Jim tnx fr the amusement, bt it is more fruitful to refer the OP to http://catb.org/~esr/faqs/smart-questions.html I thought I WAS responding to the OP. Later, --jim -- THE SCORE: ME: 2 CANCER: 0 73 DE N5IAL

Re: [android-developers] Duplicate contacts are read.

2011-12-28 Thread Mukesh Srivastav
Dear Nikilesh, let the cursor retursn the duplicate value. you need to sort out to remove the duplicate. Warm Regards, *Mukesh Kumar*, Android Consultant/Freelancer, India,Hyderabad. On Thu, Dec 29, 2011 at 12:38 AM, nikki nikhileshsingh...@gmail.com wrote: Hi Group, Please help me, I am

Re: [android-developers] Regarding Twitter Integration.

2011-12-28 Thread Mukesh Srivastav
Dear yogi, Instead of asking here first, you could have googled it. any ways, please follow the below link which helps. http://twitter4j.org/en/index.html Warm Regards, *Mukesh Kumar*, Android Consultant/Freelancer, India,Hyderabad On Thu, Dec 29, 2011 at 10:10 AM, yogendra G

Re: [android-developers] Re: I want to go on my activity class from broadcastreceiver

2011-12-28 Thread surabhi jain
thank you mukesh and pskink -- 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] [android-developer] notification of sending message

2011-12-28 Thread surabhi jain
hi I want to get the notification of sending message from android phone, is there any API from which we can get the notification of sending message. -- 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] How to change ProgressDialog background color

2011-12-28 Thread Samuel
Hi, I tried changing to background color by implementing a style like this : style name=android:MyProgressStyle parent=@android:style/ Widget.ProgressBar item name=android:background#F7F7F7/item /style The result was the background of LinearLayout and ProgressBar changed to that color. I

[android-developers] Re: Is there any problem with this app description?

2011-12-28 Thread Zsolt Vasvari
Should be Do you have a very big IQ? You may want someone that has better english skills to edit it for you, In your opinion Do you have a big IQ is good English? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

[android-developers] Control number of items in split action bar?

2011-12-28 Thread Nikolay Elenkov
Is there any way (API) to control how many items are displayed in the split action bar? Gmail and the ICS Email app display 4, while my apps only 3. I can't seem to find any related APIs, do I need a custom style? Or something else? -- You received this message because you are subscribed to

[android-developers] Re: Adding Apache Commons To Android using the Netbeans IDE

2011-12-28 Thread joebowbeer
The relevant SO response is: if ... you are building with ant - just put the jar in your libs folder of your project. Done! The NetBeans Android plugin delegates to the Ant build script when possible. (This is a feature.) On Nov 26, 7:28 am, Sam sam.mclar...@gmail.com wrote: Hi there. I'm

Re: [android-developers] Duplicate contacts are read.

2011-12-28 Thread nikhilesh singh tak
@ mukesh thanks for the replay... But what will be the criteria to remove the duplicate entires from the cursor. On Thu, Dec 29, 2011 at 10:42 AM, Mukesh Srivastav mukicha...@gmail.comwrote: Dear Nikilesh, let the cursor retursn the duplicate value. you need to sort out to remove the

  1   2   >