Re: [android-developers] Could anyone tell me how to add an item dynamically to the gridview

2012-06-29 Thread Rocky
Sandeep, follow the process - 1. Read WS (as JSON or xml format) 2. extract info from that 3. store into DB 4. create services 5. on DB change, read the total item 6. update no of item at code (getItem) 7. add 1 by 1 item to gridItem 8. update your gridvirew On Fri, Jun 29, 2012 at 11:26 AM,

Re: [android-developers] Could anyone tell me how to add an item dynamically to the gridview

2012-06-29 Thread Sandeep Venkat
Thank you Rakesh -- 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] Could anyone tell me how to add an item dynamically to the gridview

2012-06-29 Thread Dinesh kumar
how you are adding items if you use Sqlite you can add dynamically data to the gridview On Fri, Jun 29, 2012 at 11:38 AM, Sandeep Venkat sand...@believecreative.in wrote: Thank you Rakesh -- You received this message because you are subscribed to the Google Groups Android Developers group.

Re: [android-developers] Could anyone tell me how to add an item dynamically to the gridview

2012-06-29 Thread Rocky
Basically, grid is nothing but a kind of list. you can fetch sqlite data thr cursor and update your list. On Fri, Jun 29, 2012 at 11:47 AM, Dinesh kumar dragonfir...@gmail.comwrote: how you are adding items if you use Sqlite you can add dynamically data to the gridview On Fri, Jun 29,

[android-developers] how can we store a downloaded image in a filesystem of android

2012-06-29 Thread Sandeep Venkat
How to store a image that is downloaded into a particular filesystem in my app -- ThanksRegards *Sandeep MNVVB* * * -- 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: Edit contact programmed sync

2012-06-29 Thread Live Happy
can anyone help me ? On Thu, Jun 28, 2012 at 12:26 PM, Live Happy livehap...@gmail.com wrote: i used android:supportsUploading=true in the sync contacts adapter to can edit the of contact my application account type but it only show first and last name in the 2.3 so is possible to make the

Re: [android-developers] how can we store a downloaded image in a filesystem of android

2012-06-29 Thread tiyyagura yamini
you can store in sd card. On Fri, Jun 29, 2012 at 11:52 AM, Sandeep Venkat sand...@believecreative.in wrote: How to store a image that is downloaded into a particular filesystem in my app -- ThanksRegards *Sandeep MNVVB* * * -- You received this message because you are subscribed to

[android-developers] Renderscript Deprecated

2012-06-29 Thread Jason
The latest reference documentation for Renderscript shows half of the API now being deprecated. It appears to be directed toward the graphics functionality. I just built an entire 3D rendering engine on this API and am concerned that it is deprecated so soon after being released. What is it

[android-developers] floating window with actionbar

2012-06-29 Thread Johan Bilien
Hi, I'm trying to place an activity in a floating window, with an action bar. Something similar to this: http://dl.dropbox.com/u/168185/floating-action-bar.jpg If I set the theme of my activity to Holo.Light.Dialog, getActionBar() returns null. If I create my own theme, inherit from

[android-developers] Why no repositories for upgrade?

2012-06-29 Thread deb
Hello, sorry for my english. I would like wirte something about, new versions in Android. Who use Linux/Debian or other distributions, know that, you can use comand like: apt-get update apt-get upgrade apt-get dist-upgrade, and, magic, the operative system, up to version. What do you think

[android-developers] Re: setSpeakerphoneOn with AudioTrack

2012-06-29 Thread Ashwani Kumar
I have used the following permission to solve this issue: uses-permission android:name=android.permission.WAKE_LOCK/ uses-permission android:name=android.permission.MODIFY_AUDIO_SETTINGS / i invoked the am.setSpeakerphoneOn() in following manner if (result ==

[android-developers] Can't fetch xml files from google

2012-06-29 Thread jcubic
I've downloaded SDK call $ android sdk and it can't fetch xml files I got this errors: Fetching https://dl-ssl.google.com/android/repository/addons_list-1.xml Failed to fetch URL https://dl-ssl.google.com/android/repository/addons_list-1.xml, reason: Connection to https://dl-ssl.google.com

[android-developers] Indic language support in Jelly Bean

2012-06-29 Thread Jeesmon Jacob
Hi, http://developer.android.com/about/versions/jelly-bean.html says 3 more indic languages added in Jelly Bean. Other types of new language support include: - Additional Indic languages: Kannada, Telugu, and Malayalam But looking at 4.1 SDK and exploring fonts in /system/fonts of

[android-developers] How to make own map for application on android

2012-06-29 Thread Cher Yots
Now I'm developing an application Map of University on Android. I use google map api The problem is that I found on the Google Map does not show the buildings. And routing services. The University has a total area of only there's a way to solve these problem,however. Sample or not. how to

[android-developers] cannot find my app in the file system

2012-06-29 Thread Lunatikzx
Im currently in the process of byuilding an app with phonegap on android. I Prepared a spoof app with tests of some functionnalities i wanted to try before starting to develop fully. I built my app and signed it so i may install it on my phone with the apk. The problem is , my app works

[android-developers] Android SharedPreferences saving state

2012-06-29 Thread djedjica
Hello, quick question, Im begginer so don't mock if is stupid one.I understand that using shared preferences I save state of some variables inside app, So if I understand right, I can save some variable type lets say boolean inside one activity to be true, and call it by name in other activity

[android-developers] App opens with nfc-tag only?

2012-06-29 Thread Ahmed
How can I make an andriod app only works if the mobile touches the nfc tag not otherwise ? -- 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

[android-developers] ContentValues issue

2012-06-29 Thread Phil Gibbs
First, as a long-time Java developer I'm now learning Android. I have an app in which I use the ContentValues class to supply data to a Class that extends ContentProvider. Here's the issue. I'm 'put'ing 5 values (from a layout) into the ContentValues class. The problem - not all values are

[android-developers] onSearchRequested gives null pointer exception when called from an OnItemClickListener's onItemClick member function

2012-06-29 Thread James Becwar
Hi all. This is driving me nuts. I setup search in my application and it works great if you hit the search button on the device or if I call onSearchRequested() from the onStart method of my activity. But I have a listview that has a onItemClickListener that implements the onItemClick

[android-developers] Broadcast receiver starts a new thread, do I need to kill it?

2012-06-29 Thread Justin Robinson
Every 30 seconds my broadcast receiver starts a service thread like this: Thread t = new Thread(){ @Override public void run(){ Intent intent = new Intent(context, AlarmService.class); context.startService(intent); } };

[android-developers] Unlocking bootloader Xperia Ray under Linux, bootloader unlocking allowed: yes

2012-06-29 Thread Jean Luc Guislain
Hi! By accident I hit enter without putting the key: ./fastboot -i 0x0fce oem unlock 0x Now I get the message Failed when I try to unlock with the key supplied by Sony: # ./fastboot -i 0x0fce oem unlock 0x28318E0F640EBE00 ... (bootloader) Unlock phone requested FAILED (remote: oem unlock

[android-developers] Re: onMeasure() endless loop with Theme.Dialog

2012-06-29 Thread Ke Jin
use eclipse to set breakpoint at ViewRoot.scheduleTraversals(), you can find which action will result the infinitely onMeasure. Good luck! On Friday, June 10, 2011 11:37:40 PM UTC+8, michael wrote: Hi, I'm trying to write a custom component that should scale as follows: - some preferred

[android-developers] Re: Failed to fetch URL https://dl-ssl.google.com/android/repository/addons_list-1.xml and Failed to fetch URL https://dl-ssl.google.com/android/repository/repository-5.xml

2012-06-29 Thread jcubic
I have the same problem and I notice that this don't work on my system but work on my hosting account $ wget https://dl-ssl.google.com/android/repository/addons_list-1.xml I check this command (on GNU/Linux) $ host dl-ssl.google.com it show 4 servers (their IP) and I add one to /etc/hosts (on

[android-developers] How to load offline maps in android

2012-06-29 Thread greed
I am using the Droyd SDK to develop a navigation android app but I can't seem to load the maps that I downloaded. Any help pls. :) http://www.droyd.org/installation/ --- This is the link of the installation -- You received this message because you are subscribed to the Google Groups Android

[android-developers] adb connection over USB to Android Tablet ( Host App)

2012-06-29 Thread Jonathan Roberts
Hi, I am developing an android App in 4.0.3 and want to use the tablet as a host to a MSP430 MCU. I am having trouble talking to my tablet, which is a Camel Digital CM-M703 MID. I am not sure if this is a problem with OEM USB Driver or my Windows 7 problem. I am wanting to test my app using

[android-developers] Re: Localization of large amount of resources, updates and design

2012-06-29 Thread Pent
If you want the user downloading only one language, you have to handle that yourself i.e. the apk downloads the language it needs post- install from some servers somewhere onto external storage. For some critera (e.g. SDK supported) you can upload different APKs to Market and Market gives the

[android-developers] Re: emulator won't run with -gpu on

2012-06-29 Thread Gautier Portet
Hi, On Monday, May 28, 2012 10:04:31 AM UTC+2, Android007 wrote: Hi, When I try to run the emulator with hardware acceleration (on Ubuntu 10.04), the emulator gets stuck and I receive this message: Failed to create Context 0x3005 destroyOpenGLSubwindow not implemented for separate renderer

[android-developers] Android SDK won't install, says can't find Java

2012-06-29 Thread Legion6789
I've installed the Java 6 JDK but it can't see it for some reason. I've added an environment variable called JAVA_HOME that points to the Java root directory and I've tried pointing to java.exe. I've added Java to the PATH variable as well. None of this works. Is there an SDK download that

[android-developers] Merge Contact

2012-06-29 Thread Kiran Gade
Friends, My app is like that I want to merge one contact to other contact .its possible if yes then any idea about it. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] Re: PNG loading that doesn't premultiply alpha?

2012-06-29 Thread mame82
The ByteArray solution sounds good, it could easily wrapped into a Buffer an handed over to glTexImage2d(). A disadvantage of the ByteArray would be that you have to build an Image out of it again, if you want to rescale (often needed to ensure textures are power of two). Flipping is also often

[android-developers] Playback Speed

2012-06-29 Thread Louis Strauss
Hi all I want to write an app that adjusts the playback speed of mp3s. Many applications are already doing it, but which classes do they use? I have tried SoundPool and AudioTrack, but to no avail. SoundPool only buffers for a very short amount of time, while AudioTrack doesnt support mp3s.

[android-developers] SystemClock.elapsedRealtime() drifts by up to ~1 second when the phone is in sleep mode

2012-06-29 Thread Leo Alekseyev
I am writing an app that relies on precise clock synchronization between devices. I can sync up the clocks using NTP with good precision, and they stay in sync as long as the phones are plugged in. However, if either phone becomes disconnected from power and goes through a few sleep/wake

Re: [android-developers] Battery usage per app

2012-06-29 Thread kapex
Hi, Anything new about this? Its been alsmost a year since this post On Monday, September 26, 2011 10:33:15 PM UTC+2, Mark Murphy (a Commons Guy) wrote: On Sun, Sep 25, 2011 at 1:41 AM, vaibhav agrawal agrvaib...@gmail.com wrote: Is there any way in which I can get the detail that how

[android-developers] help needed regarding styling and theme

2012-06-29 Thread Eric Kon
hi all, first time drop by here and has been in android about few montn from now i'm been facing seriously problem on custom styling and theme on android. 1. alertdialog required extend class in order get color and design i wanted but the button could not custom especially when on pressed it use

[android-developers] how to share the audio played on android device to multiple audio devices

2012-06-29 Thread kuldeep
I am planning to implement a simple application that will share the current audio being played on android device, to be played on another android device. It will be a great help if anyone can tell me how to copy the audio out buffer so that I can share same audio track that is running on the first

[android-developers] Give me your suggestions !

2012-06-29 Thread Wang Ksy
Dear All, I am novice in Android Development field and i would like to seek solutions to following errors. I was able to run the android project before, but after importing few projects following errors prompts up, please provide me your valuable suggestions: *[2012-06-26 16:51:25 -

[android-developers] Google Cloud Message can't parse intent

2012-06-29 Thread Metalex
Hi! I am trying to create project using Google Cloud Messaging (not C2DM - it's deprecated). I use this code from demo app to get message text in onMessage method: String data = intent.getExtras().getString(GCM_EXTRA_MESSAGE); And I get null. Message even doesn't has message extra. What's

[android-developers] Someone stole my sound effects

2012-06-29 Thread kekzilla
Sorry if this isn't the right spot. I have an app on the market place (currently #1) it is a collection of bird sounds. About half of them are mine and half are public domain. There's a new app on the market that is in 3rd place. The guy basically took my apk file and took the sounds out and

[android-developers] Android ICS VpnService

2012-06-29 Thread kyousef
Hi, I have been trying to use VpnService new feature in android ICS. I got it working, but I use to think that there must be a remote server for the VPN, and that the mobile application have to route all traffic to that remote server and get the responses back. This complicates the design a

[android-developers] doubt in accessing database in /data folder

2012-06-29 Thread Kruthika Shastry
hi i want to develop an app for synchronizing notes between an android app in my android mobile and my PC. I want this app to be accessible for other android users also. I am using android 2.3.6 and my mobile is samsung galaxy ace. The IDE is eclipse and OS is windows 7. i have rooted my phone.

[android-developers] Not able to connect to REST service from application in device

2012-06-29 Thread sunil
Hi, We are creating an Android App which receives data from REST service. When we run app in emulator it works fine but when I run/debug it on device, it gives error Connection Refused. Please tell me how can I consume REST service from application running on device. -Sunil -- You

[android-developers] AppWidgetHostView in gridview. Posible?

2012-06-29 Thread Alexander Lisenkov
Hi! A have a problem. I need to inflate view (AppWidgetHostView) into my gridview by adapter. I have error addView(View, LayoutParams) is not supported in AdapterView when i try to add view. Anybody know somthing? -- You received this message because you are subscribed to the Google Groups

Re: [android-developers] Battery usage per app

2012-06-29 Thread Dianne Hackborn
No. The way this is done is very complicated, using an ever-evolving set of measurements of various operations applications are doing and computing them against a device-specific power profile to construct the UI. This is only intended to provide rough estimates as shown in the UI, this is not a

Re: [android-developers] Android SharedPreferences saving state

2012-06-29 Thread Dianne Hackborn
SharedPreferences is for persisting state to storage. If you just want to shared data between activities, it may not be the best choice. If you don't need to persist stuff to storage, you shouldn't be doing that. On Mon, Jun 25, 2012 at 3:15 AM, djedjica jelenka1...@gmail.com wrote: Hello,

[android-developers] Reading camera preview data while MediaRecorder is recording video

2012-06-29 Thread jiahan
I have an app that does some processing to camera preview frames before displaying them to the user. I'm currently using preview callbacks to access the image data, but the problem I have is that the onPreviewFrame() function stops getting called if you start recording video using a MediaRecorder,

[android-developers] ADK support/adding adk support for tablet

2012-06-29 Thread Michal Kozlok
Hi, I'm java programmer and I also like Arduino. So I devised an application that will do for Arduino ADK. Unfortunately, nothing from the beginning does not work. Demokit written in 2011 uses a different library, so I modified it according to the documentation. Unfortunately that did not work

[android-developers] Fortumo ANE

2012-06-29 Thread jrouwe
Hello, I've developed an Adobe Native Extension that allows you to include Fortumo (billing system) in your application (on Android), it's here: https://github.com/jrouwe/FortumoANE Let me know if it is of any use to you. -- You received this message because you are subscribed to the

[android-developers] Re: Enabling accessibility in a WebView

2012-06-29 Thread Marc Prengemann
I would like to get the answer too.. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

[android-developers] Re: WCF web service- use in android

2012-06-29 Thread manoj kumar baghela
Hello, I am working for the wcf webservice access. But have one more issue regarding Serialization. Can any one help me for this issue I will share our code with you On Monday, 11 June 2012 14:13:41 UTC+5:30, shashi asanka wrote: Please give me Sample code for access WCF web service

[android-developers] Restore an phone /efs data to an emulator

2012-06-29 Thread matmat07
Short story, my phone got stolen, and cops asked me if I had noted the IMEI. I don't, but I got an backup of the /efs folder using this : http://forum.xda-developers.com/showthread.php?t=1138873 My first tough would be to try to push back the file to an emulator, but it gave me an read-only error.

[android-developers] Purchase App Source Code

2012-06-29 Thread Mitchell
Hi, I purchased app source code from a developer changed a phew things and published my app. 5 days later my account got suspended. The email stated previous account violations. I'm thinking this dev may have been suspended previously. Can anyone give some insight on what could have happened?

[android-developers] Heyzap ANE

2012-06-29 Thread jrouwe
Hello, I've developed an Adobe Native Extension that allows you to include Heyzap in your application (on iOS/Android), it's here: https://github.com/jrouwe/HeyzapANE Let me know if it is of any use to you. -- You received this message because you are subscribed to the Google Groups

[android-developers] Questions on implementing a scripting language in an Android game project

2012-06-29 Thread mame82
Hi there At first my problem: I'm developing a game engine and at the moment I'm working on a particle system. The implementation uses a particle object , with an update method which is called in every logic loop per particle. It's possible to load values like the emitter color etc. from

[android-developers] use the android MediaController in xml layout

2012-06-29 Thread Itzick Shpitzick
Im on the computer for few hours, searching for this answer on android developers, google, youtube and every other source. I tried to search on this site but I got nothin. when I go to the main.xml file and add MediaController to the layout, I have only these options: MediaController

[android-developers] Android SMS notification for teachers and students

2012-06-29 Thread Molly
Hello everyone, I'm looking for someone in this forum who can help me developing an android application, it's basically a system where students and teachers will exchange SMS, but both the teachers and students have different view of the system. Students, will have to register, then enroll to

[android-developers] Android Eclipse USB and Linux

2012-06-29 Thread darkstar
After a LOT of Googling I am not finding any answers to this question I have, so hopefully someone here has forged this path and can enlighten me? I have set up Eclipse to develop for Android and gotten some success with using a couple of the Android simulators. (Most don't seem to work out of

[android-developers] runtime compilation of dalvik bytecode

2012-06-29 Thread mame82
I'm writing a game engine including a particle system. Every particle uses an update function ones per per logic cycle, to update it's state (position,color etc.) To keep it flexible,a own update function should be provided for every particle system,but I don't want to implement a own class

[android-developers] Problems while transfering photshop design on Android layout

2012-06-29 Thread Dmitriy F
I have a photoshop design, which has 1280x800 resolution which I'd like to transfer in Android application. I've created a layout file and added a couple of images that I'd cut previously. After that I tested it on Samsung Galaxy tab which also has 1280x800 resolution. I can't understand why

[android-developers] Android tab, not supporting usb dongle

2012-06-29 Thread MMC
We have purchase one android 2.3 tablet pc from china. As per product description it support 3G usb modem. We tried all mobile companies modem available in india. When we insert the modem the screen displays searching, but nott supporting. Please set right the problem. -- You received this

[android-developers] getLoaderManager().initLoader() doesn't accept 'this' as argument though the class (ListFragment) implements LoaderManager.LoaderCallbacksCursor

2012-06-29 Thread vurp0
I'm having trouble following a guide( http://www.vogella.com/articles/AndroidSQLite/article.html) on using SQLite in Android. I'm using a ListFragment instead of a ListActivity(as in the example), so I have the ListFragment implement LoaderManager.LoaderCallbacksCursor instead. Then, in the

[android-developers] Google Cloud Messaging (GCM) issues.

2012-06-29 Thread RyanMC
We are in the final stages of developing an app that had utilized C2DM for push notification, and decided to swap over to the new GCM since we hadn't released yet and it seemed like a good idea. However, this is proving to be a giant headache. We have the JSON and headers formatting correctly

[android-developers] Separate design based on resolution. Android 2.3

2012-06-29 Thread Dmitriy F
I'm implementing an application which must support multiple screens and provide devices with different layout designs. My task claims that layout design separation must be based on device resolution: for those devices with 1024x800 resolution use design a and for = 1024x800 - design b. I need

[android-developers] Need help - hidden GPS monitoring app

2012-06-29 Thread Mihai Popescu
Hello, I am rather new to Android, and I need some information and opinions. I intend to develop an application which would run on some Android phone, seeminglessly in the background, and send periodic messages to a server, regarding its current position (GPS coordinates). The most important

[android-developers] Re: android in-app billing sandbox

2012-06-29 Thread Ali Chousein
You have the static responses only to test in a sandbox environment. Once that is working you can test with real payments only. Honestly I don't see (m)any reasons why to complain about this setup. -Ali -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: Purchase App Source Code

2012-06-29 Thread Uwe Maurer
What kind of app was it ? On Friday, June 29, 2012 12:07:13 AM UTC+2, Mitchell wrote: Hi, I purchased app source code from a developer changed a phew things and published my app. 5 days later my account got suspended. The email stated previous account violations. I'm thinking this dev

[android-developers] Edit application sync adapter contact

2012-06-29 Thread Live Happy
i used android:supportsUploading=true in the sync contacts adapter to can edit the of contact my application account type but it only show first and last name in the 2.3 so is possible to make the other filed appear and in the ics i cant edit anything so is there another way to can edit the sync

[android-developers] Re: may i declare uses-permission in the AndroidManifest.xml of the test project?

2012-06-29 Thread Soumyadip Das
I think you need to add this permission in app mainfest. On Monday, June 25, 2012 2:55:42 PM UTC+5:30, tiger meng wrote: hi all, i created an Android project and a test project. my test cases want to access network, e.g. upload test log to my log server. my app doesn't access network,

[android-developers] Is it possible to see the display of my android device in a PC?

2012-06-29 Thread Gold
Hi, I want to stream the display output of my Android device to my PC. I Know that we can capture screenshots but I want to stream the live video of my device in my PC. Is it possible? (Viewing the output at the original resolution) Thanks a lot in advance. -- You received this message

[android-developers] How to change Bluetooth Visibility timeout to always discoverable for ICS?

2012-06-29 Thread Nate B
Can anyone help me? I need know how to programmatically set the Bluetooth visibility timeout to always discoverable for android devices running ICS. I'm using the the snippet of code that you can find on the android dev sit for Bluetooth. When the code runs the enabling discoverability dialog will

[android-developers] 'Roll your own' view layout for activity - best approach?

2012-06-29 Thread nmw01223
I am new to Android, but not to software development. This could be considered a beginner level question, but it is a bit involved, so I didn't put it on stack overflow. I've written a test app, testing out all the technologies I need to use in my first real app, found out basically how

[android-developers] Im getting this error - the application has stopped unexpectedly .. Please help me.

2012-06-29 Thread neil odiaz
Here is my code: when i click the button it says the error message .. package test.TOE; import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; public class

[android-developers] What is the actual problem in RTSP streaming in Android Emulator?

2012-06-29 Thread Madhu
Hi All, Everyone knows that if we try to play RTSP video streams in emulator, we will get a result *Sorry, this video cannot be played* What is the in-depth reason that it is not able to play. And i found in some threads that it could be because of the following reasons: *1) The media

Re: [android-developers] FAILED Binder Transaction !

2012-06-29 Thread neo
Hi , I am also facing same problem while launching the new game application after downloaded from Google Play. Following logs are displayed :: 6[ 463.271731] c1 binder: 1977:2001 transaction failed 29189, size 116-4 6[ 463.384665] c0 binder: 6532:6544 transaction failed 29189, size 200-0

[android-developers] Is there any way of providing a prebuilt database within an app?

2012-06-29 Thread Neil
We are building an app which contains a list or translations. Currently, on first run, we have to build the database from an XML source file, which contains our words to watch for and the appropriate translation word. This building of the database is starting to take quite a while as our list

[android-developers] Re: Locale for Spanish missing?

2012-06-29 Thread neil odiaz
what about FILIPINO DIALECT ? do you how to get into this ? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

[android-developers] Samsung Galaxy 3 - USB Debuging

2012-06-29 Thread nogebour
Hello, I post because i have a really important issue. I work on an application and I want to test it on my phone (a Samsung Galaxy 3). I've installed the Samsung's driver. But my computer does'nt detect the phone. I work with Windows XP. I try a lot of solutions from the web ans I'm looking

[android-developers] Re: Need help - hidden GPS monitoring app

2012-06-29 Thread Terry
I don't think it can be done! Terry kl. 12:03:08 UTC+2 onsdag 27. juni 2012 skrev Mihai Popescu følgende: Hello, I am rather new to Android, and I need some information and opinions. I intend to develop an application which would run on some Android phone, seeminglessly in the

[android-developers] Using BroadcastReceiver to listen for an intent and suppress/silence the intent dialog.

2012-06-29 Thread ohailulz
I am new to all of this, but I am doing the best I can. Okay so, basically I want to do the following: 1. User taps on a url in say the sms app they are using. 2. The URL intent comes up 3. My activity or service or something is listening and then can know if the URL intent was called. 4. Not

[android-developers] Re: path to internal storage memory of phone

2012-06-29 Thread prasanna
could u send some sample code On Tuesday, June 19, 2012 3:31:46 PM UTC+5:30, shruti gupta wrote: Hi, I am developing an app in which some data is stored in a file in internal storage of phone, i now want to acess the data in some c program whose binary is loaded in phone. please tell me

[android-developers] Do professional Android games almost entirely rely on the Canvas element?

2012-06-29 Thread Will Manson
Hi there, I am currently in the stage of designing an Android application (more specifically, a game). I was wondering, out of interest, whether most/all professional Android games use Canvas for all drawing of on-screen elements, and just accept input through 'onTouchEvent' on the main game

[android-developers] Re: ListView inside a tabhost not displaying content initially

2012-06-29 Thread Robert Joly
I had the exact same setup in my app (multiple tabs using the same ListView and had the same issue as you observed). My initial work-around was to quickly switch the tab to 1 and then back to 0 but, the way my app handled tab changes, this has some nasty side-effects. What I ended up doing

[android-developers] Multiple checkbox in on row from listview

2012-06-29 Thread Prasanna
Hi, Here i am trying to add three check box in one cell through listview, but its made many problems.kindly help me -- 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] problm on spinners

2012-06-29 Thread Ina Gupta
how to connect 2 spinners together. Meaning, the items inside 2nd spinner will depend on whatever item is chosen for the 1st spinner -- 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] Customize suggestions in android keybord

2012-06-29 Thread Nilesh
Hi, I am using android ICS. Android shows contacts in the suggestions area of keyboard. I am writing an application in which for a given EditText these contact name values make no sence, for example text field for part names of an vehicle here I will provide list of such part names then the

Re: [android-developers] Battery usage per app

2012-06-29 Thread Kumar Rangarajan
Probably this is already known but you can use powertutor app (available for some devices) or build your own from powertutor.org to get details of power consumed per app. It also provides hardware component level breakdown of each app. :-) Sent from my iPad On 29-Jun-2012, at 12:53 PM, Dianne

Re: [android-developers] problm on spinners

2012-06-29 Thread Narendra Singh Rathore
On Fri, Jun 29, 2012 at 1:51 PM, Ina Gupta ina.mc...@gmail.com wrote: how to connect 2 spinners together. Meaning, the items inside 2nd spinner will depend on whatever item is chosen for the 1st spinner Have you tried it before asking? If yes, what problem are you facing in that? Just

[android-developers] Code to send mail not working

2012-06-29 Thread Priya Mehta
Button b2=(Button)findViewById(R.id.btnmail); b1.setOnClickListener(new View.OnClickListener() { public void onClick(View v) { // TODO Auto-generated method stub Intent intent = new Intent(Intent.ACTION_SENDTO); Uri uri = Uri.parse(mailto:priya.mehta...@gmail.com;); intent.setData(uri);

[android-developers] Share to unlock functions

2012-06-29 Thread Oliver
Hi, So I have an idea for making my app more popular. It's a free app, but some functions are not available by default. To unlock them, you would have to type in a key. You can get this key by sharing a link to the app's Google Play page and as soon as 5 friends of you have clicked on it, you

[android-developers] Android app with google calender

2012-06-29 Thread cypher246
Hi, im looking to create an app that would display a calender synced with google calender so that it will display new entry's on the phone and also able to change/add dates from the phone side.. is this possible? if so know any guides etc? thanks -- You received this message because you are

[android-developers] Impressora Bluetooth

2012-06-29 Thread Ícaro Oliveira
Bom dia, Estou tentando desenvolver um app para se conectar com uma impressora via Bluetooth e que imprima um EditText. Só estou começando agora na area de desenvolvimento e gostaria de alguma dicas ou sites para eu estar dando uma olhada, pelo menos pra começar. Att. Ícaro Oliveira. -- You

[android-developers] Where do I register?

2012-06-29 Thread Nickolaus Poling
I'm new to this and trying to find out where to register to publish products to google play. I didn't see any on the google play website when I clicked on developer. Also I am planning on utilizing unity 3d engine to create a game, but I am curious about tutorials utilizing the SDK's for

[android-developers] How can I set Fragment Id?

2012-06-29 Thread VansFannel
I'm developing an Android 3.1 Tablet application which uses * android.support.v4.view.ViewPager* and *android.support.v4.app.Fragment*. I have two classes which extends fragment. These classes are added to a ViewPager. This works fine, but when I try to get a specific fragment with *

[android-developers] SQLite custom file

2012-06-29 Thread Paul-Peter Tournaris
Hello! Is there a way to put a custom made sqlite file in the assets folder and simply open it without having to copy it on another database? Thanks in advance! -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] send message

2012-06-29 Thread Priya Mehta
how can i send message in the background without any notification to the user -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email

[android-developers] Android + phonegap: cannot access soap webservice

2012-06-29 Thread Michael Potter
Android Crew, Although this problem has to do with phonegap, I am posting it here because phonegap uses the native browser and so there may be a solution to my problem that is more tied to Android rather than phonegap. I have an problem with accessing a webservice using android. I have no

RE: [android-developers] How to solve 'ClassNotFoundException' on 'BackupAgent'??

2012-06-29 Thread nona sonta-816
Subject: Re: [android-developers] How to solve 'ClassNotFoundException' on 'BackupAgent'?? From: har...@gmail.com Date: Mon, 25 Jun 2012 10:53:15 +0300 To: android-developers@googlegroups.com On Jun 25, 2012, at 10:07 AM, Build Account wrote: 1. when it downloaded from the app

RE: [android-developers] Re: How to solve 'ClassNotFoundException' on 'BackupAgent'??

2012-06-29 Thread nona sonta-816
Date: Mon, 25 Jun 2012 00:07:13 -0700 From: newandroi...@gmail.com To: android-developers@googlegroups.com Subject: Re: [android-developers] Re: How to solve 'ClassNotFoundException' on 'BackupAgent'?? Hi. Oh, is it? understood. Then..to investigate further..here is several questions, Do

[android-developers] Way to promote android apps.

2012-06-29 Thread nikunj
Hi All, We are fairly new to app development and see that apps get lost the moment they enter the google play market.With major players controlling the app market and its next to impossible for small/new developers like us to even get a few downloads. Admobs is one way of doing it, but its quite

[android-developers] Way to promote android apps.

2012-06-29 Thread nikunj
Hi All, We are fairly new to app development and see that apps get lost the moment they enter the google play market.With major players controlling the app market and its next to impossible for small/new developers like us to even get a few downloads. Admobs is one way of doing it, but its quite

[android-developers] Re: Problems with ListView scroll.

2012-06-29 Thread Harry Peirse
Can you post your code? On Tuesday, June 26, 2012 9:00:37 AM UTC+1, Put_tiMe wrote: I have a ListView, and a custom adapter. I have setup listeners for click, and long-click. The problem:: I can scroll, but the moment I take my finger off the screen, it scrolls back to the top of the list

  1   2   3   4   >