[android-developers] Android Project development cost

2012-03-21 Thread nvlakshmi vakiti
Hi , A senior android developer ,how much he will cost for hourly or task or project basis for Android Project development? Please let me know. Thanks in Advance. -- Lakshmi -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to

[android-developers] Re: Android Project development cost

2012-03-21 Thread Zsolt Vasvari
I'll do it for US$100 a hour... On Wednesday, March 21, 2012 2:13:38 PM UTC+8, Lakshmi Vadupu wrote: Hi , A senior android developer ,how much he will cost for hourly or task or project basis for Android Project development? Please let me know. Thanks in Advance. -- Lakshmi

[android-developers] Re: Push Notification Services for 4.0

2012-03-21 Thread Nicolas Embleton
Push notifications are availalbe since 2.3 or 2.2 ? ( please remind me ) It is called C2DM, Cloud To Device Messaging. And you can find the doc here: http://code.google.com/android/c2dm/ Nicolas. On Wednesday, March 21, 2012 11:50:27 AM UTC+7, Hemant Chaudhari wrote: Hello All, I want to

[android-developers] Re: RelativeLayout layout_alignParentRight changes parent

2012-03-21 Thread Zsolt Vasvari
I have never noticed this and I have many-many Relative layouts. On Wednesday, March 21, 2012 10:21:59 AM UTC+8, rdietrick wrote: I have a RelativeLayout that encapsulates several other views. I have the layout_width of the parent (RelativeLayout) set to wrap_content. If I set the

Re: [android-developers] Android, SQLite, massive (5000%+) loss of performance on a certain query, on a certain device

2012-03-21 Thread Zsolt Vasvari
I have 2 users (out of thousands) reporting this problem. I am at a loss as to why this is happening, also. It doesn't have anything to the data as the user claims they few rows. I even had them recreate their database (I have a backup facility that that backs up/restores from JSON) and the

[android-developers] SDK VERSION?

2012-03-21 Thread Abhilash baddam
Hi Friends, For my Application I am using target version as API Level 8 and I mentioned minSdkVersion in manifest as 7. 1) If the user is having SDCard automatically I want to install my app in SDCard other wise in internal memory. For that I mentioned android:installLocation=preferExternal in

[android-developers] android developer wants to chat

2012-03-21 Thread android developer
--- android developer wants to stay in better touch using some of Google's coolest new products. If you already have Gmail or Google Talk, visit: http://mail.google.com/mail/b-5dd04db2b3-947e5a6ec4-58Pk-rVJyUPbXJ3v-wyzurb-FlU

[android-developers] which framework is best for to develop cross platform mobile applications?

2012-03-21 Thread nvlakshmi vakiti
Hi, Which framework is best one to develop cross platform mobile applications? Thanks in advance. lakshmi -- 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

Re: [android-developers] which framework is best for to develop cross platform mobile applications?

2012-03-21 Thread Anirudh Loya
Check previous mails. Already lots of discussion happened on this topic . On Wed, Mar 21, 2012 at 1:59 AM, nvlakshmi vakiti lakshmi.vad...@gmail.comwrote: Hi, Which framework is best one to develop cross platform mobile applications? Thanks in advance. lakshmi -- You received this

[android-developers] Strange Security exception while reading WiFi info

2012-03-21 Thread Tomáš Hubálek
Hi, I'm getting error report from anonymous user with this stack trace listed bellow. I have no idea what is wrong as I checked permissions and I have uses-permission android:name=android.permission.ACCESS_WIFI_STATE/ in AndroidManifest.xml. Could anybody give me a clue what this exception

Re: [android-developers] Strange Security exception while reading WiFi info

2012-03-21 Thread Swapnil Mondkar
Hi I have created the webservice http://demo.polymerupdate.com/web/news-desk.asmx?op=DisplayNewsHeadLines after filling the username and password i get the response in xml fromat every thing is working fine and smooth. But when the other devloper adds the refrence of the webservice he is

[android-developers] How do you get the Activity that launches the IME?

2012-03-21 Thread tsukishiro
Hello guys, Still working on my IME (sheesh, it's taking too long... .). I was wondering if there was a way to get a reference or instance of the Activity that launches my IME. For example, if I was in the new contact activity of Contacts application and I click on an input field (like an

Re: [android-developers] Android, SQLite, massive (5000%+) loss of performance on a certain query, on a certain device

2012-03-21 Thread Zsolt Vasvari
Actually, just to respond to myself -- I don't believe this a SQLite issue. For this only happens on the one query that runs in the AsyncTask. I run the exact same query twice in parallel: once in the UI thread (I know I shouldn't, but it's fast) and then I run it again in the AsyncTask,

[android-developers] Re: How do you get the Activity that launches the IME?

2012-03-21 Thread Zsolt Vasvari
I don't believe so. An IME is a completely separate app in Android. Just as you cannot get a reference to another app's activity, you cannot do this from an IME. On Wednesday, March 21, 2012 3:15:52 PM UTC+8, tsukishiro wrote: Hello guys, Still working on my IME (sheesh, it's taking

[android-developers] Re: Strange Security exception while reading WiFi info

2012-03-21 Thread Zsolt Vasvari
Is this error reproducible by your user? You see some weird errors pop-up once in a while from user that I attribute to bugs in a) Android, b) the firmware, c) the custom skin of the device. As long as it happens randomly and to not many users, I wouldn't worry about it too much. On

[android-developers] Re: How do you get the Activity that launches the IME?

2012-03-21 Thread tsukishiro
Thanks Zsolt Vasvari, Hmmm... I can get the package name of the Activity that launched my IME, is there a way to use that information to create a dummy instance of an Activity? On Wednesday, March 21, 2012 4:23:48 PM UTC+9, Zsolt Vasvari wrote: I don't believe so. An IME is a completely

Re: [android-developers] Re : Button onclick

2012-03-21 Thread Narendra Singh Rathore
On Tue, Mar 20, 2012 at 2:24 PM, vivek elangovan elangovan.vi...@gmail.comwrote: on clicking the button then only i need to display input field otherwise i have to hide fields and have to fill data Why don't you set initial visibility of the fields to be INVISIBLE and on Button

[android-developers] Re: How do you get the Activity that launches the IME?

2012-03-21 Thread Zsolt Vasvari
No. It's a completely separate app in different processes, signed with different certificates, etc, etc. On Wednesday, March 21, 2012 3:30:23 PM UTC+8, tsukishiro wrote: Thanks Zsolt Vasvari, Hmmm... I can get the package name of the Activity that launched my IME, is there a way to use

[android-developers] Re: How do you get the Activity that launches the IME?

2012-03-21 Thread tsukishiro
Noo. . ok, let me try a different angle at this. Let's say I were to make an IME that is not a subclass of InputMethodService, is it possible? I was thinking of launching a translucent Activity to hold my on-screen keyboard. Can this be done? On Wednesday, March 21, 2012 4:43:47 PM

[android-developers] Re: Push Notification Services for 4.0

2012-03-21 Thread Hemant Chaudhari
Thanks Nicolas, Is it also supported on Android 4.0? -Hemant On Wednesday, 21 March 2012 11:54:44 UTC+5:30, Nicolas Embleton wrote: Push notifications are availalbe since 2.3 or 2.2 ? ( please remind me ) It is called C2DM, Cloud To Device Messaging. And you can find the doc here:

[android-developers] Re: How do you get the Activity that launches the IME?

2012-03-21 Thread Zsolt Vasvari
I mean, I take that back. If you know the class name of an activity, you can start it with an Intent, but you cannot really control it in any meaningful way, so I am not sure what you would be able to accomplish. On Wednesday, March 21, 2012 3:49:20 PM UTC+8, tsukishiro wrote:

[android-developers] Re: How do you get the Activity that launches the IME?

2012-03-21 Thread tsukishiro
Oh, I take it you mean something similar to this onehttp://stackoverflow.com/questions/7914912/starting-activity-from-another-application-using-only-package-name right? Well, basically, if I already have a reference to the Activity that launched my IME, then I would be able to use that

[android-developers] animation

2012-03-21 Thread Indraneel Kulkarni
hey all i have to create a basic animation. i want to make a stick figure walk. how do i do it? i have no clue. please help! thanks! -- 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: How do you get the Activity that launches the IME?

2012-03-21 Thread Zsolt Vasvari
No, you cannot call methods in another process' Activity as you cannot get a reference to it. You can start it via an Intent, but that won't give you a reference. Nothing will. On Wednesday, March 21, 2012 4:13:23 PM UTC+8, tsukishiro wrote: Oh, I take it you mean something similar to this

[android-developers] Re: animation

2012-03-21 Thread Zsolt Vasvari
Pay somebody. On Wednesday, March 21, 2012 4:13:29 PM UTC+8, Indraneel Kulkarni wrote: hey all i have to create a basic animation. i want to make a stick figure walk. how do i do it? i have no clue. please help! thanks! -- You received this message because you are subscribed to the Google

[android-developers] Android instrumentation testing, how to start with clean database all the time

2012-03-21 Thread Dirk Vranckaert
I'm testing my application with Android Instrumentation tests. So I have a test-class extending ActivityInstrumentationTestCase2 which contains multiple tests. The code looks like this: http://pastebin.com/0Di3Hwug So the activity which is under test has a list of projects. The list of

[android-developers] Re: How do you get the Activity that launches the IME?

2012-03-21 Thread tsukishiro
Zannen (too bad in jap.) I guess this is a dead-end road. Thanks for your replies Zsolt Vasvari! Really helped me clarify a things. On Wednesday, March 21, 2012 5:22:37 PM UTC+9, Zsolt Vasvari wrote: No, you cannot call methods in another process' Activity as you cannot get a reference

[android-developers] How do you launch an Activity for your IME?

2012-03-21 Thread tsukishiro
Hello all, Is it possible to launch an Activity as you IME? By this, I mean, that instead of using a KeyboardView for the InputView of the IME, an Activity containing a few widgets will be launched. My purpose in doing this is so that I can control where the keyboard will be placed on screen.

[android-developers] Re: animation

2012-03-21 Thread Oli Wright
Buy a small softcover book with plain pages. On each page draw your stick figure in a slightly different position to the last page (through the progress of a walk). Once done, hold the book in one hand and with the other hand flick through the pages at a constant pace. Magical isn't it. On

[android-developers] Re: about the online source codes of Android 1.0 and 1.1

2012-03-21 Thread Oli Wright
This is the wrong group to ask this in. This group is for development using the SDK. Approach the community offerings on http://source.android.com On Wednesday, March 21, 2012 12:35:16 AM UTC, michael wrote: Is there any good sources that I can explore the source code online? Thanks a

Re: [android-developers] Re: Android Project development cost

2012-03-21 Thread asheesh arya
nice joke!!! keep it up!! -- 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

[android-developers] Re: Android Project development cost

2012-03-21 Thread suresh
As developer we used to think project complexity based on that we will charge. On Mar 21, 11:13 am, nvlakshmi vakiti lakshmi.vad...@gmail.com wrote: Hi , A senior android developer ,how much he will  cost for hourly or task or project basis for Android Project development? Please let me

Re: [android-developers] Re: Android Project development cost

2012-03-21 Thread BNReddy
Project basis in charge. small app u 10k to 15k in 15 day working -- Regards, Narayanareddy.B 9032478372 -- 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: Google Maps are very old on Android

2012-03-21 Thread lbendlin
You're welcome. On Tuesday, March 20, 2012 7:35:10 PM UTC-4, ga...@deanblakely.com wrote: I was warned it would be weird over here. Gary On Mar 18, 7:09 pm, Zsolt Vasvari zvasv...@gmail.com wrote: You didn't specify: android:giveMeLatestMaps=true On Monday, March 19,

[android-developers] How to wait for file scanning finished before starting the launcher app

2012-03-21 Thread Chuan
Hi there I am currently working on an Android launcher application, and I would like to play some intro video before the launcher starts. Knowing that playing video directly from assets or raw folder does not work on some devices, I include the video file in assets folder, and let the app copy

[android-developers] get the IP List of HotSpot Clients

2012-03-21 Thread rakesh kumar
Hi, I am Using HotSpot on Nadroid Tablet to create the local network. All the Clients are able to connect with the Tablet through HotSpot in the local Network. Issue:- 1. How can I get the IP List of HotSpot Clients. 2. How can my Application find out whether any new device going to

Re: [android-developers] Android, SQLite, massive (5000%+) loss of performance on a certain query, on a certain device

2012-03-21 Thread Mark Murphy
Also, bear in mind that on 2.2 and below (and some 2.3 devices), we are dealing with the YAFFS2 filesystem, so if some other app is doing a bunch of disk I/O, you may be blocked by their work. On Wed, Mar 21, 2012 at 3:22 AM, Zsolt Vasvari zvasv...@gmail.com wrote: Actually, just to respond to

RE: [android-developers] Re: Encoder???

2012-03-21 Thread Muhammad UMER
Hi skink, I want to ask some questions, I know this is not a personal discussion forum, but i have to ask. 1) I am new to android, and android camera to server live video streaming is my first application. please can you tell me that Can I sale out this application

[android-developers] stroke bottom?

2012-03-21 Thread Pinheiro
Hi! I'm trying to create a shape with a border on 3 sides (top and sides, not at the bottom): shape xmlns:android=http://schemas.android.com/apk/res/android; solid android:color=#000 / stroke android:width=2dp android:color=#888 / corners android:topLeftRadius=2dip

Re: [android-developers] Re: animation

2012-03-21 Thread Anirudh Loya
PAY ME !! On Wed, Mar 21, 2012 at 2:49 PM, Oli Wright oli.wri...@gmail.com wrote: Buy a small softcover book with plain pages. On each page draw your stick figure in a slightly different position to the last page (through the progress of a walk). Once done, hold the book in one hand and

Re: [android-developers] Android, SQLite, massive (5000%+) loss of performance on a certain query, on a certain device

2012-03-21 Thread Zsolt Vasvari
But that should effect both the UI thread query and the worker thread query. But only one runs slow. On Wednesday, March 21, 2012 7:11:43 PM UTC+8, Mark Murphy (a Commons Guy) wrote: Also, bear in mind that on 2.2 and below (and some 2.3 devices), we are dealing with the YAFFS2 filesystem,

Re: [android-developers] Re: Push Notification Services for 4.0

2012-03-21 Thread Android Developer
yes, it is. C2DM Supports from 2.2 and higher. Mani. On Wed, Mar 21, 2012 at 1:33 PM, Hemant Chaudhari hemant.newslet...@gmail.com wrote: Thanks Nicolas, Is it also supported on Android 4.0? -Hemant On Wednesday, 21 March 2012 11:54:44 UTC+5:30, Nicolas Embleton wrote: Push

[android-developers] Alert dailog --.view.WindowLeaked

2012-03-21 Thread arun kumar
I want to dispaly alert dailog in asyn task( in post method..) am getting the alert dailog but in log it show the errorandroid.view.WindowLeaked: Activity com.androi.LoginScreen has leaked window protected void onPostExecute(Void result) { // TODO Auto-generated method stub

[android-developers] Re: How to make autocompletetextview list border as transparent

2012-03-21 Thread Android Developer
Hi I am not sure whether i can achieve this or not. because its default list attributes i dont know how to change this. On Wed, Mar 21, 2012 at 1:37 PM, Android Developer c2dmdevelo...@gmail.comwrote: Hi, I have autocompletetextview while tying its shows the list. how to i make the list

[android-developers] TypeError: Result of expression 'navigator.camera'

2012-03-21 Thread subrat kumar panda
Hi All, i am using coredova-1.5.0.js. when i press a button to capture image i always have the error: TypeError: Result of expression 'navigator.camera' [undefined] is not an object i think it's coredova-1.5.0 problem / eclipse problem. anyway the the coredova-1.5.0.js file is not able to

[android-developers] open penalty

2012-03-21 Thread bob
Is there a significant performance penalty for opening files on the SD card? For instance, if you try to play a movie by opening 1000 PNG files in a directory on the sd card, is this way worse than having them all concatenated in one file? My (probably flawed analysis) is this: Since the SD

[android-developers] Re: Google Maps are very old on Android

2012-03-21 Thread JP
On Mar 18, 10:22 pm, TreKing treking...@gmail.com wrote: On Sun, Mar 18, 2012 at 7:07 PM, g...@deanblakely.com g...@deanblakely.comwrote: Why would this be? The Google Maps add-on has essentially been abandoned. It has not received an update of any sort in several years now. There was

[android-developers] Re: android crash while installing .apk

2012-03-21 Thread Chris Stratton
On Wednesday, March 21, 2012 12:47:09 AM UTC-4, kiran nayak wrote: hi all i have booted android on my beagleboard.. but when i try to install a simple helloworld.apk android crashes. This question doesn't belong on android-developers since it's a system problem with a custom build; it

[android-developers] Re: Android adb permision error

2012-03-21 Thread Chris Stratton
Is the content of your udev rules file correct, and will it match the device you are connecting? Ie, post the content of your rules file. On Tuesday, March 20, 2012 7:59:49 AM UTC-4, Hera wrote: Hello, I have installed the android SDK but I’m getting an error when using a hardware

Re: [android-developers] Android, SQLite, massive (5000%+) loss of performance on a certain query, on a certain device

2012-03-21 Thread Kostya Vasilyev
Are you perhaps running multiple instances of this query at the same time, causing contention inside SQLite? From what you've described, it seems possible - since AsyncTask uses a pool of more than one thread, and you also mentioned running this query on the UI thread as well. I would try to use

Re: [android-developers] Re: Google Maps are very old on Android

2012-03-21 Thread TreKing
On Tue, Mar 20, 2012 at 6:22 PM, g...@deanblakely.com g...@deanblakely.comwrote: The com.google.android.maps.MapView has been abandoned?? Yes. Google, AFAICT, has given up on updating the entire Google Maps Addon Library. I must misunderstand. What tool do android developers use when they

Re: [android-developers] open penalty

2012-03-21 Thread TreKing
On Wed, Mar 21, 2012 at 9:02 AM, bob b...@coolfone.comze.com wrote: For instance, if you try to play a movie by opening 1000 PNG files in a directory on the sd card, is this way worse than having them all concatenated in one file? Try both, profile both, compare.

Re: [android-developers] Re: Android adb permision error

2012-03-21 Thread Kostya Vasilyev
FWIW, I remember seeing this with some (not all) of my devices, even when my UPnP ids were correct. To fix, I specified my actual user and group to the udev file, like this: SUBSYSTEM==usb, ATTR{idVendor}==0bb4, MODE=0666, OWNER=kman, GROUP=kman ... changing from the usual GROUP=plugdev (IIRC)

Re: [android-developers] Re: How to change shortcut icons dynamically on home screen in Android ?

2012-03-21 Thread TreKing
On Wed, Mar 21, 2012 at 12:08 AM, Abhishek Kumar Gupta akgaec2...@gmail.com wrote: Thanks for the reply. I am able to change the shortcut icon of application only when I am moving the application from launcher screen to home screen( i.e. when I am creating the shortcut icon of application).

[android-developers] type of connector?

2012-03-21 Thread bob
I found this connector on an Android device: http://s11.postimage.org/wu78mfoar/connector.jpg Can someone help me identify what type of connector this is? Thanks. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

Re: [android-developers] type of connector?

2012-03-21 Thread TreKing
On Wed, Mar 21, 2012 at 10:01 AM, bob b...@coolfone.comze.com wrote: Can someone help me identify what type of connector this is? Can you stop using this group as a dumping ground for silly questions that have NOTHING to do with actual Android Development? Thanks.

Re: [android-developers] How do you get the Activity that launches the IME?

2012-03-21 Thread TreKing
On Wed, Mar 21, 2012 at 2:15 AM, tsukishiro tsukishir...@gmail.com wrote: Now I want to get a reference to the new contact activity from which my IME was launched. Is this possible? If you explain what you hoped to accomplish with such functionality, perhaps someone could offer alternative

Re: [android-developers] Re: Android adb permision error

2012-03-21 Thread Nadeem Hasan
Make sure you have the correct Vendor id listed for your device. Use lsusb to get this. Then make sure you are a member of the group that gets the permission (plugdev in this case). -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] free publisher account

2012-03-21 Thread νιяιη¢нソ
Hello everyone, Is it mandatory for a developer to buy an android publisher account with an amount of $25. cant he publish his applications without paying this amount ,like for free apps ... -- You received this message because you are subscribed to the Google Groups Android Developers group.

Re: [android-developers] How do you get the Activity that launches the IME?

2012-03-21 Thread Kristopher Micinski
I think this goes in the i want to extend another app category, which is asked a lot here.. kris On Wed, Mar 21, 2012 at 11:10 AM, TreKing treking...@gmail.com wrote: On Wed, Mar 21, 2012 at 2:15 AM, tsukishiro tsukishir...@gmail.com wrote: Now I want to get a reference to the new contact

Re: [android-developers] Alert dailog --.view.WindowLeaked

2012-03-21 Thread Yaron Reinharts
Hi, This error means that you are trying to show a dialog after the activity exit. In the AsyncTask sample there is no call to super.onPostExecute(result); Hope this helps /Yaron -- Yaron Reinharts Smart Drive Applications http://www.poncho.co.il/gateaway.php

Re: [android-developers] free publisher account

2012-03-21 Thread TreKing
2012/3/21 νιяιη¢нソ joinvir...@gmail.com Is it mandatory for a developer to buy an android publisher account with an amount of $25. Yes. You're not buying an account, you're paying a fee, presumably to curtail spammers and non-serious developers. cant he publish his applications without

Re: [android-developers] SDK VERSION?

2012-03-21 Thread TreKing
Did you have a question? - TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago transit tracking app for Android-powered devices -- You received this message because you are

[android-developers] Re: Bug: Google Analytics JAR is generating corrupt data for PageViews and Events

2012-03-21 Thread Lathe26
On further investigation, it was found that this bug only manifests when setDryRun(true) is called. The good news is that when it is set to false (or not called), then the LogCat output and any network capture logs (ex: WireShark) show that the correct data is actually uploaded to the servers.

[android-developers] Re: Bug: Google Analytics JAR is generating corrupt data for PageViews and Events

2012-03-21 Thread Lathe26
On Monday, March 19, 2012 10:01:55 AM UTC-7, Lathe26 wrote: I'm wondering if anyone else is seeing this severe data corruption bug. I've confirmed this behavior in the Android simulator and on my own phone using the libGoogleAnalytics.jar version 1.4.2 If I use the Google Analytics JAR

[android-developers] Re: Bug: Google Analytics JAR is generating corrupt data for PageViews and Events

2012-03-21 Thread Lathe26
On further investigation, it was found that this bug only manifests when setDryRun(true) is called. The good news is that when it is set to false (or not called), then the LogCat output and any network capture logs (ex: WireShark) show that the correct data is actually uploaded to the servers.

Re: [android-developers] type of connector?

2012-03-21 Thread Kostya Vasilyev
21 марта 2012 г. 19:06 пользователь TreKing treking...@gmail.com написал: On Wed, Mar 21, 2012 at 10:01 AM, bob b...@coolfone.comze.com wrote: Can someone help me identify what type of connector this is? That's a 5-pin Mini-USB Type B. http://www.svyaznoy.ru/catalog/accessories/2704/567250

[android-developers] video not playing in mdpi devices..

2012-03-21 Thread vani reddy
HI friends, I have a video in mp4 format its playing in hdpi devices but not in mdpi devices? How to resolve this -- Regards, Vani Reddy -- 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] Dev Environment - maven-android-eclipse

2012-03-21 Thread Ted Scott
This is somewhat off topic, but I couldn't think of a better place to ask. Is anyone successfully using maven and eclipse to develop android apps? If so, are they complex apps? I really like the dependency management aspects of maven, but getting eclipse to play nicely with maven in an

[android-developers] sending custom parcelable to another application

2012-03-21 Thread Franzi Roesner
Hi, I'm trying to send a custom Parcelable to another application (in another process). I have a client and a remote service, as well as an abstract class (say, AbstractCustomParcelable) that I added to the Android framework itself (for research purposes). The remote service should receive

[android-developers] io.vov.vitamio.VitamioInstaller$VitamioNotCompatibleException

2012-03-21 Thread AndroidGirl8
Hi all , I'm using Vitamio api for streaming youtube videos for live channel on youtube, but when i tested it on 3.2 emulator it gave this message : Vitamio is not compatible with your device . is this because i'm testing in emulator or caused by another problem ? Any help will be appreciated

[android-developers] Disable NumberPicker EditText for editing

2012-03-21 Thread Pankaj Chawla
Hi I am trying to use the NumberPicker in ICS 4.0.3. NumberPicker has a EditText widget that goes into edit state every time I swipe the control to pick a new value. This results in the virtual keyboard popping up.I will like to disable the editing in the EditText of the NumberPicker so that

Re: [android-developers] Re: Android Project development cost

2012-03-21 Thread TreKing
On Wed, Mar 21, 2012 at 1:23 AM, Zsolt Vasvari zvasv...@gmail.com wrote: I'll do it for US$100 a hour... I'll do it for $90 / hour. A Happy Ending will cost an extra $5. An Exciting Conclusion an extra $10.

Re: [android-developers] Re: Android Project development cost

2012-03-21 Thread Nadeem Hasan
I will do it for $85/hr with no extra charge for any ending of your choice. Don't you love competition. -- 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

Re: [android-developers] io.vov.vitamio.VitamioInstaller$VitamioNotCompatibleException

2012-03-21 Thread Harri Smått
Hi, Did you try asking for support from serv...@vov.io already? There's rather strong clause right after Android SDK example download link (@ http://vov.io/vitamio/) Vitamio ought to be willing to provide support via email. -- H On Mar 21, 2012, at 6:45 PM, AndroidGirl8 wrote: Hi all ,

Re: [android-developers] Re: Android Project development cost

2012-03-21 Thread Bob Plantz
Recommendation: Take the bid just before the one that says $n/hr with the ending of MY choice. :-) On 3/21/2012 10:00 AM, Nadeem Hasan wrote: I will do it for $85/hr with no extra charge for any ending of your choice. Don't you love competition. -- -- You received this message because you

Re: [android-developers] io.vov.vitamio.VitamioInstaller$VitamioNotCompatibleException

2012-03-21 Thread AndroidGirl8
Ok i sent an email to serv...@vov.io , but do you think it because i'm testing on emulator , actually i tried to play videos on 3.2 emulator and it's working just fine but i don't know what is the problem now in this ? and if i should test on real device and currently i don't have one , is

[android-developers] one time Registration after installation of an application??

2012-03-21 Thread muhammad.ume...@hotmail.com
hi, I want to register the user only one time when he use after installation and save it's name locally on mobile. how can i do this? please give any suggestion. Thanks and Regards, umer -- You received this message because you are subscribed to the Google Groups Android Developers

Re: [android-developers] one time Registration after installation of an application??

2012-03-21 Thread TreKing
On Wed, Mar 21, 2012 at 12:34 PM, muhammad.ume...@hotmail.com muhammad.ume...@hotmail.com wrote: I want to register the user only one time when he use after installation and save it's name locally on mobile. how can i do this? Check SharedPreferences.

[android-developers] How to use cp (Copy) command in system function in native C code on Android

2012-03-21 Thread A B
I want to copy file from on directory to another in my native C program. I tried using system function but it's not working. I tried this code in native code of Android int result = system(cp /mnt/test /Download/); // It's not working This system function returns 256 (error code) integer value.

[android-developers] Re: preferences.xml

2012-03-21 Thread vaggos von karajan
Solved..! -- 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

Re: [android-developers] Digest for android-developers@googlegroups.com - 25 Messages in 15 Topics

2012-03-21 Thread Abhishek Singh
On Wed, Mar 21, 2012 at 1:26 AM, android-developers@googlegroups.comwrote: Today's Topic Summary Group: http://groups.google.com/group/android-developers/topics - Progress bar and get info #13631af38aed2f8d_group_thread_0 [1 Update] - need for speed class

Re: [android-developers] Re: preferences.xml

2012-03-21 Thread Mark Phillips
How?? If you are going to ask for help, and then say the problem is solved, you have an obligation to tell the list the solution, so the next bloke with a similar problem can help him/herself. Mark On Mar 21, 2012 10:40 AM, vaggos von karajan vaggo...@otenet.gr wrote:

Re: [android-developers] free publisher account

2012-03-21 Thread Justin Anderson
Be grateful that it is a one-time low fee... Apple charges a yearly fee that is much more than that and Amazon is going to start charging $99 every year beginning next year... On Mar 21, 2012 9:25 AM, TreKing treking...@gmail.com wrote: 2012/3/21 νιяιη¢нソ joinvir...@gmail.com Is it mandatory

[android-developers] Re: sending custom parcelable to another application

2012-03-21 Thread Franzi Roesner
I figured this out, in case someone else needs this one day. In the remote service, I did: Context c = createPackageContext(com.my.package, Context.CONTEXT_IGNORE_SECURITY | Context.CONTEXT_INCLUDE_CODE); bundle.setClassLoader(c.getClassLoader()); However, what are the security implications

[android-developers] Re: RelativeLayout layout_alignParentRight changes parent

2012-03-21 Thread rdietrick
I don't make this stuff up. Try this one on for size: Take out the android:layout_alignParentRight=true attribute from the child view and you'll see that the parent_layout reverts back to it's min_width of 280dp. But with that attribute set to true the parent_layout expands horizontally to

[android-developers] Re: RelativeLayout layout_alignParentRight changes parent

2012-03-21 Thread rdietrick
Forgot to paste the closing RelativeLayout tag. Just add this to the end of the XML: /RelativeLayout On Wednesday, March 21, 2012 11:28:53 AM UTC-7, rdietrick wrote: I don't make this stuff up. Try this one on for size: Take out the android:layout_alignParentRight=true attribute from the

Re: [android-developers] Re: RelativeLayout layout_alignParentRight changes parent

2012-03-21 Thread Kostya Vasilyev
Yep, I've seen this too. Makes RelativeLayout less useful, but, oh well :) -- unless I'm missing something, like android:layout_alignParentRightButDontMakeSelfAsWideAsParent=true. 21 марта 2012 г. 22:28 пользователь rdietrick rdietr...@gmail.com написал: I don't make this stuff up.  Try this

Re: [android-developers] Re: sending custom parcelable to another application

2012-03-21 Thread Kostya Vasilyev
Are you asking about the security implications of something called IGNORE_SECURITY? What this does is loads code from one application into another app's process -- that's arbitrary code that the loading application has no control over. There is no finer granularity control like load only

Re: [android-developers] Re: sending custom parcelable to another application

2012-03-21 Thread Dianne Hackborn
Another way to look at it is if you are using subclassing with Parcelable, you are probably going in the wrong direction. Parcelable is pretty dumb, and doesn't really support subclassing completely. You should always stay with concrete implementations of Parcelable objects that do not make use

Re: [android-developers] How to use cp (Copy) command in system function in native C code on Android

2012-03-21 Thread Dianne Hackborn
No shell commands are part of the SDK, so this is not supported. Even if you get this to work, you are likely to break on different devices. The correct way to do this is to use the File etc APIs to implement your copying. For example, this is some code in the platform: // copy a file from

Re: [android-developers] How do you launch an Activity for your IME?

2012-03-21 Thread Dianne Hackborn
Sorry, you can't, and the IME is deliberately kept at the bottom because allowing it more flexibility would place a much greater burden on app developers to try to deal with whatever it could do. On Wed, Mar 21, 2012 at 1:30 AM, tsukishiro tsukishir...@gmail.com wrote: Hello all, Is it

Re: [android-developers] io.vov.vitamio.VitamioInstaller$VitamioNotCompatibleException

2012-03-21 Thread Harri Smått
On Mar 21, 2012, at 7:25 PM, AndroidGirl8 wrote: Ok i sent an email to serv...@vov.io , but do you think it because i'm testing on emulator , actually i tried to play videos on 3.2 emulator and it's working just fine but i don't know what is the problem now in this ? and if i should test

[android-developers] SWF file

2012-03-21 Thread bob
Does anyone know the easiest way to play back an SWF file on an Android device? 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

[android-developers] Re: io.vov.vitamio.VitamioInstaller$VitamioNotCompatibleException

2012-03-21 Thread Nadeem Hasan
From their FAQ: Q: What does VitamioInstaller.VitamioNotCompatibleException mean ? A: A VitamioInstaller.VitamioNotCompatibleException indicates that you're using a device which is not supported by Vitamio. By now, Vitamio can work with most ARMv6 and ARMv7 based devices, but not

[android-developers] Grid Lists

2012-03-21 Thread Android_n00b
The Android developer website talks about Grid Lists ( http://developer.android.com/design/building-blocks/grid-lists.html) - these magical controls that scroll both vertically and horizontally allowing you to create beautiful applications. However, besides that one article, there is no mention

Re: [android-developers] Android, SQLite, massive (5000%+) loss of performance on a certain query, on a certain device

2012-03-21 Thread Mark Murphy
2012/3/21 Kostya Vasilyev kmans...@gmail.com: From what you've described, it seems possible - since AsyncTask uses a pool of more than one thread, and you also mentioned running this query on the UI thread as well. Actually... on ICS, that's apparently no longer true. Somebody tweeted this

Re: [android-developers] Grid Lists

2012-03-21 Thread Mark Murphy
On Wed, Mar 21, 2012 at 5:01 PM, Android_n00b nikhil...@gmail.com wrote: The Android developer website talks about Grid Lists (http://developer.android.com/design/building-blocks/grid-lists.html) - these magical controls that scroll both vertically and horizontally allowing you to create

Re: [android-developers] Android, SQLite, massive (5000%+) loss of performance on a certain query, on a certain device

2012-03-21 Thread Kostya Vasilyev
Wow. Just checked my 4.0.1 and 4.0.3 sources - yes, it's there: /** * An {@link Executor} that can be used to execute tasks in parallel. */ public static final Executor THREAD_POOL_EXECUTOR = new ThreadPoolExecutor(CORE_POOL_SIZE, MAXIMUM_POOL_SIZE, KEEP_ALIVE,

[android-developers] Re: Removing an item from ListView

2012-03-21 Thread Doug
You can do this the same way you would do anything that changes the data displayed in a ListView. Make the data change in the adapter that's hooked up to the ListView, then call notifyDataSetChanged on the adapter. That will cause the ListView to refresh with the new data in the adapter.

  1   2   >