[android-developers] Re: start binded service from broadcast receiver

2011-07-04 Thread dnkoutso
Is your BroadcastReceiver trying to bind to the service? If so, I do not think you are allowed to do that (hence the exception). Broadcast receivers should only perform quick tasks. Try starting your own service from the receiver, that binds to the AIDL. BroadcastReceiver - start your own

[android-developers] Re: start binded service from broadcast receiver

2011-07-04 Thread dnkoutso
Edit: http://developer.android.com/reference/android/content/BroadcastReceiver.html Read the Life Cycle part. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To

[android-developers] Re: More Market questions

2011-07-04 Thread Zsolt Vasvari
Just a comment on the quality of the comments: In my (liimted) experience, it appears to be quite cultural. U.S. buyers seems to either leave glowing comments or really negative comments. But users from other countries, Russia and Brazil to come to mind, seem to be generally more constructive

[android-developers] Re: Android add a new framework

2011-07-04 Thread Aravind
Hi Mark n Kumar, Thanks for your comments. Currently i'm developing Android applications with legacy API's using socket. 1) Am adding my application on mydroid/packages/apps folder which is communicating with legacy C code(Some 3rd party library) using Socket/ JNI. 2) Am not clear about the

[android-developers] Multiple authenticator services in one app?

2011-07-04 Thread a...@alexlebek.com
Hi, Is it possible to share an authentication service for different accounts (and also share the service's intent action for authentication). Can the account-authenticator tag be used only once in the associated xml resource? For example - the second account-authenticator... / here is junk ?xml

[android-developers] multiuser application, managing of custom back stack.

2011-07-04 Thread Andrey Stelmashenko
Hello, community! I`m working on multiuser application, which is rest client. So when I launch it the 1st activity offers you to log in. e.g. I have 10 activities and LoginActivity. I can go through all of them in different orders: LoginActivity - Activity1 - Activity2 - Activity3 ... -

[android-developers] Page Turning effect

2011-07-04 Thread rishabh agrawal
Sir, Please suugest me how i am use any effect for going one page to another page for better User Interference. Please Help -- 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] 3D graphing on an Android Phone

2011-07-04 Thread Bizeasset
Hi We are currently working up an app that will take data recived by a transmitting device via bluetooth. We then need the resulting data points of XYZ to be displayed as a 3D graph. What are my options to work with? We have a Nexus S handset to work with. Thanks Bizeasset -- You received

Re: [android-developers] Fragments

2011-07-04 Thread Bryan Liles
The Google IO app has its source available. (http://code.google.com/p/iosched/source/checkout). They make a good use of fragments in there. On Fri, Jul 1, 2011 at 10:08 AM, Jayanthi jaia...@gmail.com wrote: Hi All,          I am doing application in Honeycomb but i am not clear with Fragments

[android-developers] Re: Force hdpi drawables on mdpi-xlarge devices

2011-07-04 Thread nadam
Yes Dianne, that's obvious to you and me. I didn't mean to insinuate that there is something wrong. Just wanted to clarify for people who might not know what a mipmap is. Are mipmaps used for enlarging any other parts of the UI or is it only for launcher icons? On 4 Juli, 05:42, Dianne Hackborn

[android-developers] How to set the target as ARM-v7 on eclipse under Linux

2011-07-04 Thread s.rawat
HI All, How to set the target as ARM-v7 on eclipse for developing android application , by default it supports ARMv5 arch.I am using Eclipse under Linux. PLz assist, Rgds, Saurabh ..pain is temporary.quitting lasts forever.. -- You received this message because you are subscribed to the

[android-developers] Enforcing security on broadcast receiver without access to calling package

2011-07-04 Thread Corey Z
Is there any way to get the calling package when the BroadcastReceiver receives an intent? I have been searching around and am under the impression that this is impossible. The situation is that I don't have access to the calling package and cannot manipulate the manifest in any way. I am

[android-developers] Re: Regarding BroadCast Receiver

2011-07-04 Thread Thomas Economous
You should create a service to start the activity instead. Your broadcast receiver should call the service. On Jun 2, 2:50 am, Incredible success.anil...@gmail.com wrote: Can't we invoke an activity usingBroadcastreceiver. The onReceive forBroadCastreceiverwill be triggered whenever user

[android-developers] Recognize the shape of object from a bitmap image?

2011-07-04 Thread Habibur Rahman
Hi All, Recently, I worked with a paint project. First of all ,I need to select a color. When I touch the image then selected color will be replaced with same color region of bitmap image. How I can recognize the shape of same color region in the image. Sincerely, Habib -- You received this

[android-developers] Developing aqndroid apps in EClipseIDE using Maven framework

2011-07-04 Thread dipti nandan
Hi, I have been stuck with this problem for 3 days.I want to develop an android app in Maven framework using Eclipse.I have no idea about Maven framework.I am using apache maven.I followed the instructions in installing,its showing the version etc,but when i try to set path to repo,I am getting

[android-developers] emulator for Samsung Galaxy S and Device configurtaion

2011-07-04 Thread G S
Hey i want to create emulator for galaxy S in AVD and also to configure new device that i could work with Eclipse designer (Graphical Layout) that fit the emulator. can anyone guide me? tnx gil -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Back Ground Sound in Android

2011-07-04 Thread Devon Smith
For Playing different sounds I have made a class SoundManager using soundpool now I can play a wanted sound on button click by my activities.But I want a back ground sound which will play through out my whole game ,from one activity to other.So how can I do it using SoundPool and where I have to

[android-developers] How to keep a service running to get SCREEN_ON broadcast?

2011-07-04 Thread 3c
Hello, I have an application which monitors various components of the Android system: CPU, Memory, SD, apps, etc... The users can select to have a widget or a notification displayed on their device or even both. The notifications are able to display CPU load or CPU frequency and are provided as

[android-developers] Problem permission Gingerbread 2.3.3 Coby Kyros MID7015

2011-07-04 Thread JackAndroid
Hello everybody I'm new here still do not understand much more to me struggling android. 2.3.3 In the gingerbread Tablet coby MID7015 everything is almost perfect, only that it agrees to forward applications to the SD memory card. The problem is allowed in both the card and in the NAND memory.

[android-developers] Broadcast Receiver not working immediately after package installation

2011-07-04 Thread Thomas Economous
I am currently working on an app that receives the BOOT_COMPLETED action using a Broadcast Receiver. The receiver is statically registered in the AndroidManifest.xml. It works on the next boot after installation for android 2.2 but not 3.1. With 3.1 I have to start the app once before the

[android-developers] PC as USB Host for Android 2.3.4

2011-07-04 Thread Colin M
First, hello all! Now my issue. I'm trying to get basic comms over USB working between Android 2.3.4 devices (dev device is a Nexus One with 2.3.4 upgrade) and my PC has the USB Host (PC is an OSX box, but am also testing on an Ubuntu11 box) using libusb-1.0. I'm doing this in order to

[android-developers] Re: Offline installation of Android packages

2011-07-04 Thread Edgar
I am a android first timer and had similar problem two nights ago. I tried to download and install Android SDK on older Windows XP machine using the recommended install package at http://developer.android.com/sdk/index.html, but the install kept failing. ( Android install could not find the Java

[android-developers] Problem with clicking on list

2011-07-04 Thread Dawid Pacholczyk
Hi everyone. I have a problem with my custom list. I`ve created my own adapter and everything works great. I have a nice list. But no I want to add an OnClickListener so I can click on a row and actualy do something. I`ve created the listener and added it to the one item of my row BUT it works

[android-developers] Custom list and onClick

2011-07-04 Thread fixus
Hi everyone. I have a problem with my custom list. I`ve created my own adapter and everything works great. I have a nice list. But no I want to add an OnClickListener so I can click on a row and actualy do something. I`ve created the listener and added it to the one item of my row BUT it works

[android-developers] Is checking view in adapter is needed ?

2011-07-04 Thread fixus
Hello, I`m learning about creating own ArrayAdapter because I want to put some custom object in my List view. I`ve read this article: http://www.softwarepassion.com/android-series-custom-listview-items-and-adapters/ Now the question is about small part of code: if (v == null) {

[android-developers] Re: Offline installation of Android packages

2011-07-04 Thread Edgar
I am a android first timer and had similar problem two nights ago. I tried to download and install Android SDK on older Windows XP machine using the recommended install package at http://developer.android.com/sdk/index.html, but the install kept failing. ( Android install could not find the Java

[android-developers] Custom ArrayAdapter in ListView and OnClickItem

2011-07-04 Thread fixus
Hello List, I`ve created my own adapter for ListView and now I would like to click on the items but I can`t. I`ve created something like this NewsArrayAdapter naa = new NewsArrayAdapter(NewserActivity.this, R.layout.row, news); setListAdapter(naa); ListView lv =

[android-developers] touch and click listeners

2011-07-04 Thread Dawid Pacholczyk
Hello, I have a short question. Should I use in same time OnTouch and OnClick listeners ? If I`m correct one is for touch screens and other is for devices with out it. Am I wrong ? If not should I use both listeners to secure both kind of devices ? Best regards Dawid Fixus Pacholczyk -- Dawid

[android-developers] Where to unregister Media Button event receiver when process is killed explicitly

2011-07-04 Thread Jia Meng
Our application uses registerMediaButtonEventReceiver() to listen to remote control events, say from Bluetooth headset. And we call unregisterMediaButtonEventReceiver() to remove the listener in onPause() and onDestroy(). It works well for most of the times. However, if the process of our App is

[android-developers] In-App billing and Lodsys patent issues

2011-07-04 Thread Ferdinand
Hey Guys, In the case of the in-app billing and Lodsys patent issues, how are you guys modelling your new paid apps? Are you still using in-app billing? Or have you reverted to using a different app download to unlock the free app? Hope to hear how some of you are dealing with the billing issues

[android-developers] Receivers and Prefereces

2011-07-04 Thread Alê x )
1. I Have a broadcast receiver that need to talk with a activity when data or wifi connection status is changed. How i do that in a correct manner? Need to use indent or can call direct? Someone can give a exemple? 2. Thats a simple question. I have a preferenceActivity but i dont know how to

[android-developers] How to dynamic render account settings preference screen?

2011-07-04 Thread timothy
Hi all, I am currently working on account settings. When user added an account, he also can edit the account, like gmail, there is always an account setting page. In the SampleSyncAdapter, we need a preference xml to describle the preference screen. However, the screen is static, created in

[android-developers] cannot setup google account although network is working

2011-07-04 Thread mm
Android 2.2/Linux version 2.6.29 I have a device without grps and no wifi around. I created a connection via usb via pppd. When I open the browser, it displays an error message telling me that there is no connection - then I can surf without problems. I cannot set up my google account for the

[android-developers] Re: SoundPool and DualCore (Samsung Galaxy S2) : Random Crashes ingame

2011-07-04 Thread Hello SuperCombo
I am seeing the same behavior in our game as well! Has anybody come up with a workaround for this problem or are we just at the mercy of Samsung to push out a bug fix? On Jun 22, 1:12 pm, Andy m...@tekx.de wrote: I preload my Sounds via loadso that i didn't have to reload on runtime... but

[android-developers] Contact info needed for Android@Home technical support and new development

2011-07-04 Thread ambientcloud
I'm a Electronics Design Engineer doing delevopment using WiFi on Android phones and need some help. There are a number of questions about the current capabilites that Android phones have in supporting 802.11b/g/n communications. Is there someone I can contact directly to get answers?

[android-developers] How to disable the Clear Data button in Application info of Manage appliaction.

2011-07-04 Thread Nimit Solanki
I am working on android 2.2, In a Application tab of android manifest provide the option of Allow clear data to set true or false. But after setting it to False, my application can't disable the button of Clear data in application info of Manage application. I am facing this problem when

[android-developers] Need help with custom view object

2011-07-04 Thread raazgul
I am trying to create a custom view object that I can display on the screen. I have been able to display the object but and I now trying to add this view to a gallery type thing so that I can horizontally scroll through a few of them. I am wondering if I can just add them directly to the gallery

[android-developers] How does ResolverActivity or ChooserActivity gets list of applications ?

2011-07-04 Thread rk
Hi, I have an application that can open text files. If I click preview for my Gmail text file attchment, ResolverActivity lists my application. It displays my application Icon and Name The name is specified in androidManifest.xml using android:label. Is there any way that I can supply my

[android-developers] CalledFromWrongThreadException

2011-07-04 Thread BlackBishop64
Hi, I have the following problem: in my main activity I've created a linearlayout vertical with 3 views, a title view, a game view and a score view. Game view is update with a thread in order to keep a constant framerate, this thread call the method onDraw of the game view, so far so good, the

[android-developers] Accessing Android application from Remote PC

2011-07-04 Thread Narayana Kandepi
I want to access a program or a service running in android device form my remote pc. briefly I want to access an application in android from my pc and android app will give some results back to pc.can any one give solution for this? -- You received this message because you are subscribed to the

[android-developers] Re: start binded service from broadcast receiver

2011-07-04 Thread kampy
Hi , thanks for the information. can we make service not to be stopped by the user if it can be my requirement will be done as this is a mobile theft tracker application the service running should not be stopped by the user . can u plz suggest me anything idea how to do this On Jul 4, 11:48 am,

Re: [android-developers] Custom list and onClick

2011-07-04 Thread Me
Hi Dawid Fixus ; It should work for single click . . . Have you put the breakpoint in method public void onClick(View v) { Log.i(testy, this.news.getName()); } and see if the control is coming into this method on single click . . .. On Fri,

[android-developers] External data an persistence across uninstall

2011-07-04 Thread Chris
Is there a standard place on external storage that we can write to that won't be wiped when uninstalled? RdTFM, Googled it, can't seem to find a consensus. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

[android-developers] [URGENT] How to open a sms thread by thread id or sender number

2011-07-04 Thread GMR
Hi guys! I need an experience to open a sms thread programmatically from my mms or sms inbox queried by thread id or sender id. Thanks in advance! -- 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] Failed to load properties file for project 'HelloAndroid'

2011-07-04 Thread hadestaboo
Hello everybody, I'm newbie and weak programming but try to study about android so I start every step by step in http://developer.android.com/resources/tutorials/hello-world.html and I got this problem eclipse.buildId=M20110210-1200 java.version=1.6.0_24 java.vendor=Sun Microsystems Inc.

[android-developers] Re: start binded service from broadcast receiver

2011-07-04 Thread kampy
Actually i am running my own service that binds tha AIDL from the broadcast receiver but as i saw in the documentation it is not allowed . On Jul 4, 11:48 am, dnkoutso dnkou...@gmail.com wrote: Edit:http://developer.android.com/reference/android/content/BroadcastRecei... Read the Life Cycle

[android-developers] Save new contact in a custom account

2011-07-04 Thread Fugee47
i created a custom syncadapter (based on samplesyncadapter) to synchronize contacts with a custom server-application. This works without problems. The only problem is when adding a new contact via contact editor, i cannot select this custom account to save the new contact. When i explore the

Re: [android-developers] External data an persistence across uninstall

2011-07-04 Thread Nikolay Elenkov
On Mon, Jul 4, 2011 at 4:57 PM, Chris crehb...@gmail.com wrote: Is there a standard place on external storage that we can write to that won't be wiped when uninstalled?  RdTFM, Googled it, can't seem to find a consensus. The 'standard place' on external storage is

Re: [android-developers] Problem with clicking on list

2011-07-04 Thread Filip Havlicek
Hi Dawid, read this tutorial http://developer.android.com/resources/tutorials/views/hello-listview.html it actually contains the solution for your problem. Best regards, Filip Havlicek 2011/7/1 Dawid Pacholczyk dpacholc...@gmail.com Hi everyone. I have a problem with my custom list. I`ve

Re: [android-developers] touch and click listeners

2011-07-04 Thread Filip Havlicek
Hi Dawid, a brief description of the various listeners is here http://developer.android.com/guide/topics/ui/ui-events.html Best regards, Filip Havlicek 2011/7/1 Dawid Pacholczyk dpacholc...@gmail.com Hello, I have a short question. Should I use in same time OnTouch and OnClick listeners ?

[android-developers] confused by weakref_impl implementation

2011-07-04 Thread Eric
I got confused when I read source code about RefBase.cpp // compile with refcounting debugging enabled #define DEBUG_REFS 0 #define DEBUG_REFS_ENABLED_BY_DEFAULT 1 #define DEBUG_REFS_CALLSTACK_ENABLED1 class RefBase::weakref_impl : public RefBase::weakref_type {

[android-developers] Bengali Font preview problem [dependent vowel signs]

2011-07-04 Thread Harisur
Hi, i fetch this problem, about dependent vowel signs of Bengali language. i took two screen-shoots where i put a Bengali string in string.xml and trying to show that string with a TextView. my code snippets is like this one

[android-developers] Re: Tamil font(unicode)

2011-07-04 Thread Harisur
Hi Suba, i fetch this problem, about dependent vowel signs of Bengali language. i took two screen-shoots where i put a Bengali string in string.xml and trying to show that string with a TextView. my code snippets is like this one

[android-developers] Re: How to add Unicode font on Android

2011-07-04 Thread Harisur
Hi, i fetch this problem, about dependent vowel signs of Bengali language. i took two screen-shoots where i put a Bengali string in string.xml and trying to show that string with a TextView. here a code snippets

Re: [android-developers] How to disable the Clear Data button in Application info of Manage appliaction.

2011-07-04 Thread Filip Havlicek
Why do you need to protect it in the first place? 2011/6/30 Nimit Solanki solanki.ni...@gmail.com I am working on android 2.2, In a Application tab of android manifest provide the option of Allow clear data to set true or false. But after setting it to False, my application can't disable the

[android-developers] SDK Android3.0平板電腦應用程式開發

2011-07-04 Thread art...@mail.items.tw
我的SDK已更新到Android3.1版(包含3.0版) 在SDK模擬時選擇了Android3.0 將寫好的程式執行模擬10.1吋的平板電腦是沒問題的 但下載到真正的平板電腦裡為什麼還是出現手機規格的小視窗 無法達到平板電腦的全螢幕範圍??? -- 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] Binding VideoView to RTSP server running on localhost

2011-07-04 Thread MarkySmarky
Hi Guys, Is there a problem binding a VideoView's URI to a RTSP server socket running on a localhost (rtsp://{local ip}:{port})? -- 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] Android using Gson with Proguard - ClassCastException

2011-07-04 Thread J M
I am in desperate need of a solution to this problem, it is the final thing holding up the release of my app. I have an object that has 2 properties of type Map which when converted to json and back work great. But when I use proguard, it complains about the Map saying:

[android-developers] How to get video being played back in a OpenGL-texture

2011-07-04 Thread Johi
For an Augmented Reality application, I need to get a video (file or stream, ideally H.264 encoded) into an OpenGL texture. I want to overlay certain real-world-objects in my AR application with videos. So, the video will not be full-screen, the video should be played in a (perspectively

[android-developers] The method parseInt(String) in the type Integer is not applicable for the arguments (Editable)

2011-07-04 Thread James Javed
package com.example.test; import android.app.Activity; import android.os.Bundle; import android.view.View; import android.widget.*; public class TestActivity extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState)

Re: [android-developers] back storing in android

2011-07-04 Thread Justin Anderson
* In Android mobile suppose we run any application that time we click back button in android mobile means it will return to previous activity. * Yep, that is how it works. * but i want to specify my favorite page not previous page.* Unless you have a really good reason, don't do this. It is

[android-developers] Adding TableLayout dynamically not working

2011-07-04 Thread Jake
I have what I thought was very simple code: //Get LinearLayout declared in XML final LinearLayout mainLayout = (LinearLayout) findViewById(R.id.linLayout); //Create a LinearLayout to display text in. LinearLayout myLayout = new LinearLayout(this); myLayout.setLayoutParams(new

[android-developers] Android and ResponseCache... Request Headers are missing

2011-07-04 Thread mcohnen
I am implementing ResponseCache for HttpUrlConnection in android. Everything seems to work. I call ResponseCache.setDefault(new ResCache()); And the methods in my ResCache class are being used as expected. The only problem I am having is that the Map with request Parameters is empty. If I

Re: [android-developers] Re: Youtube Logo

2011-07-04 Thread Justin Anderson
http://tinyurl.com/3tm6mzt Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Thu, Jun 30, 2011 at 10:39 AM, Mark Murphy mmur...@commonsware.comwrote: On Thu, Jun 30, 2011 at 12:15 PM, JCC banr...@gmail.com wrote: Fine, then mind giving me a link to a

[android-developers] Rotate Google Map

2011-07-04 Thread Kubilay D . Yılmaz
Hi Friends, I developed a map applications and if there is an U-Turn on the road I want to rotate map (North point must be always on top of phone) How can i handle it. Thank you for your concern. Regards, -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Turn off screen but not hardware keys, catch input with screen off

2011-07-04 Thread lousou76
Hi, I am new to android apps and I am trying to figure out a way to keep an application in foreground running, getting input from the hardware keys only (like volume up and down) but without turning on the screen or unlocking. I mean lets say you aquire a nice cpu partial wakelock to do your

Re: [android-developers] Re: Youtube Logo

2011-07-04 Thread Matt Harmon
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Jun 30, 2011, at 9:15 AM, JCC wrote: Fine, then mind giving me a link to a place where I could ask for this? Really? You expect that? ... sound of mind boggling ... Really? While there may be some overlap between marketing and development these

[android-developers] Android 2.1 Eclair clear data

2011-07-04 Thread Hoe
is there have the clear data button for Eclair? I am using Xperia X10 Sony Ericson. I can't found any clear data button for the application. the data is store in internal storage. is there anyway for me to clear the data inside the internal storage? -- You received this message because you are

[android-developers] requestBuffer(0, 0, 0, 4, 00000200) Issue

2011-07-04 Thread Ji
Hi, I developed an android app in which one flow is to loop between Activity A - Home Screen - Activity B. Activity A being the video and Activity B is GLSurface view. App works ohkay for some time but keep app running for longer period of time it stalls on homescreen and when I see logs I

[android-developers] SMS Broadcastreceiver not received when GO SMS Pro installed

2011-07-04 Thread Android Geek
I have implemented an SMS receiver which intercepts incoming SMS messages without any issues. However, when I install GO SMS Pro and set Disable other message notification, then my app does not receive any broadcast message even though I have set the priority on intent filter very high. Is there a

[android-developers] How can I Import Test Project into Eclipse?

2011-07-04 Thread sanemat
Import test project into eclipse that I think it's difficult. I found a question and answer one year ago(Sep 15 '10). This is crazy way below. How do you resolve? This problem still(Jul 3 '11) exist? Import Android Test Project into Eclipse from Version Control - Stack Overflow

Re: [android-developers] Re: em...@android.com

2011-07-04 Thread Luciano Assis
wtf! 2011/7/1 souissi haythem haythe...@gmail.com are you sure??? On Jul 1, 3:04 pm, Jorge Luis jorgelferr...@gmail.com wrote: yes. 2011/7/1 souissi haythem haythe...@gmail.com Why, it's only for person who work in android sociaty??? On Jul 1, 2:50 pm, Jorge Luis

[android-developers] Calling image from the server using json format

2011-07-04 Thread umar zia
Hello please help me about this link how we can solve this problem easily http://stackoverflow.com/questions/6538255/image-retrieval-using-json-format-in-android -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] Android Contacts - Read Only

2011-07-04 Thread gilbert
Hello, I have been trying to find out how to make a contact under my account 'read-only'. I have searched all over the internet and have had no luck in this matter. I'm pretty sure this is possible as both Facebook and Twitter do this with their contacts. Any help would be much apreciated, Thank

[android-developers] Differences between Android 3.0 and 3.1 in garbage collection?

2011-07-04 Thread Steven Jeon
Hi. I have an apk which is supposed to be operated in Honeycomb devices. It requests some information to a server, receives replies in a form of XML, parses the reply, and display the results. It works fine in Android 3.0. However, if I run the same apk in Android 3.1, I see (in DDMS) consecutive

[android-developers] Calculate Distance like GoogleMap

2011-07-04 Thread Kubilay D . Yılmaz
Dear Friends, I have two lat's and Lon's and want to calculate distance between them. However I do not want use Location.distanceBetween or float distance = locationA.distanceTo(locationB); I want to get results over road.(like google map) How can I handle this on android? Thank you -- You

[android-developers] Build a continuous data flow between an application server and several devices

2011-07-04 Thread cladsam
Hello, I would like to build a android smartphone application that receives data from a server on a regular basis and refresh screen You can see it as a IBM slam tracker for tennis grand slam results or a weather application ... whatever. Anyway, the goal is to have a server that send messages to

[android-developers] SVG editing making Honeycomb 3.0 emulator slow due to more than 100% CPU usage

2011-07-04 Thread Rohan Ghosh
Hi, I am building a SVG editor on Honeycomb. I am using html and javascript apis for editing the SVG. I am displaying the html in a webview and calling the javascript functions from my native code. I am taking two svg layers. The lowermost layer contains the actual svg and the topmost layer is a

[android-developers] google maps

2011-07-04 Thread hendra fachruzi
dear sir, i have a trouble with google maps, can i uninstall this application ? its not working when i doing tht cause i think i loose my data here... thanks for your kind attention regard hendra -- You received this message because you are subscribed to the Google Groups Android Developers

Re: [android-developers] More Market questions

2011-07-04 Thread Raghav Sood
The download count that users see are based on total installs. I can't help you with any thing else except 7) as I have had a market account for less than a week. As for 7) you search for your app on the market or find it in the category. The page you see is what the user will see. Here is your

[android-developers] GPS Signals

2011-07-04 Thread Abdul Samad
Hello, i recently developed a location based service in android, my apps works with GPS signals in conjunction with google maps. problem is that, it takes lot of time to get the gps signals, when you are in a dense area (sorrunded by buildings) u dont get any signal at all, BUT if we talk

[android-developers] Loading local javascript files in webview

2011-07-04 Thread Rich
Hi, I have a slight issue with loading javascript files within a webview I have created, I am storing everything within the assets directory so all the files are local to the app and I have tried to load them a couple of different ways but neither seemed to work: script type=text/javascript

[android-developers] How to display image or movie in the Gallery Preview based on the mode in which Preview was launched

2011-07-04 Thread Sarah
Hi All, When I launch the Preview from IMAGE mode of Camera application it displays an image which was taken the latest, and all other items including image and movie files ORDER BY creation date. I have captured the following from the Camera application, that I launch from the Gallery 3D

[android-developers] Sony Ericsson Xperia Active-barometer sensor spec ?

2011-07-04 Thread PETR KALAFATIC
Hi, I want to know some more info about the barometer. Full specifications would be useful (accuracy, range, measurement frequency...) I would like to use it for programming the altimeter/vario for paragliding , but it depends on the quality of the barometer. Perfect sensitivity would be measured

[android-developers] A service can update an activity?

2011-07-04 Thread Ricardo Longa
It is possible a service update an activity that is to active connection every 10 seconds (for example)? Open a connection with the service and request the information I could do, I need now the opposite way. -- You received this message because you are subscribed to the Google Groups Android

[android-developers] How to send an image to paired device via bluetooth?

2011-07-04 Thread Rajni Sharma
Hi, i am working on an application according to which when i enabled bluetooth of my phone the list of all other bluetooth enabled devices should be displayed and a predefined text/image data automatically send to the device which is selected from the list. i tried bluetooth chat example but i

[android-developers] Android GB build Err on Ubuntu 10.10

2011-07-04 Thread Sudhir venkat
Hi All I upgraded my machine to Ubuntu 10.10 yesterday and tried to compile GB build (This build compiled fine on my previous Ubuntu version). But as soon as I start choosecombo I am getting permission errors. I tried SUDO and changing permissions of directory. But still stuck with same errors.

[android-developers] How to send an image to paired device via bluetooth?

2011-07-04 Thread Rajni Sharma
Hi, i am working on an application according to which when i enabled bluetooth of my phone the list of all other bluetooth enabled devices should be displayed and a predefined text/image data automatically send to the device which is selected from the list. i tried bluetooth chat example but i

[android-developers] Getting contact names for facebook integrated contacts

2011-07-04 Thread Rawan Khalil
I am using content providers to retrieve contacts by their ID and then I am trying to get their names. However, I have noticed that the names and pictures are retrieved only for contacts that have no kind of facebook integration and exist only on the phone. Some of these facebook integrated

[android-developers] emulator

2011-07-04 Thread obaidullah azmi
emulator: ERROR: unknown virtual device name: 'hello' emulator: could not find virtual device named 'hello' sir, i use windows 7 when i start the emulator then face above problem while my jdk path is F:\ANDROID SOFTWARES\Java\jdk1.6.0\bin and system path is C:users\user

[android-developers] how can i modify an existing motionevent

2011-07-04 Thread vered cohen sharvit
for example i have two positions of multi-touch and i want to invalidate one of them? -- 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,

[android-developers] glSwapBuffer

2011-07-04 Thread Pablo A
Hei, by trying to make an aplication for android i obtained an exception: glSwapBuffer exception. I do not have any idea about what this exception means. Any idea?? Thanks for everything -- You received this message because you are subscribed to the Google Groups Android Developers group. To

[android-developers] How to make a image work as a button

2011-07-04 Thread Dalton Metzler
So i have a image thats on my project how do i make it where you can tap on that image then it brings you to a new menu -- 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

Re: [android-developers] How to hadle bulk of XML response in Java/Android

2011-07-04 Thread sourabh sahu
Use string buffer On 1 Jul 2011 12:55, naveen kumar kumarnaveen.si...@gmail.com wrote: Hi All Android developer, Till now i am not getting perfect solution for === i am getting large server response in XML format.i am not able to save that all response in String for parser. getting

[android-developers] Back Button leads to Black Screen

2011-07-04 Thread Droid Is As Droid Does
Hello developers, I am currently in the process of writing an application that starts with a SplashScreen, moves to the MainMenu activity and from there the user can select an item from the menu and it takes them to another activity. Pretty simple use case. However, when I take the user to any

[android-developers] Device availability dialogue on Developer Console

2011-07-04 Thread Vikram
Hi, I am a newly registered android developer and I published a small app to become familiar with the publish process. However I am unable to find the Device availability dialogue as pointed out by this link :

[android-developers] Compiling the anroid source code from cmd

2011-07-04 Thread Soumen
Hello Android Lovers, I have developed one app for android, now I wnt to compile it from cmd . I am able to do it if I am not going to use any external libraries for it. But If I use any external libraries them I am not able to compile it . What is the resolve for it. I

[android-developers] Video not playing in Device

2011-07-04 Thread vani reddy
Hi friends, Video is not being played in the device : ERROR/PlayerDriver(95): Command PLAYER_INIT completed with an error or info PVMFErrContentInvalidForProgressivePlayback ERROR/MediaPlayer(10920): error (200, -82) ERROR/MediaPlayer(10920): Error (200,-82) -- Regards, Vani Reddy -- You

[android-developers] In-App Billing service doesn't stop properly once started.

2011-07-04 Thread Smapty
I'm running into an issue where the Billing Service that my app creates won't stop. Steps to reproduce -Start app -Do something that would normally trigger the billing service (like restore purchases) -Tell the service to stop -press home button and check the application manager When I check the

[android-developers] How to make a spinner in listview

2011-07-04 Thread duc nguyen
Hi all ! I'm having problem with add spinner in listview. Eeach row has two spinners and two edittexts I try more and more ways. But can not working. Can you help me? please. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

  1   2   3   >