[android-developers] Re: need help in coding for animation

2012-01-11 Thread Ali Chousein
can anyone provide code for this. I can. Which address I should send the invoice? -- 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

[android-developers] Re: How to fill the screen in GridLayout using child views?

2012-01-11 Thread Kasas
You can have a distribution like this: RelativeLayout GridLayout LinearLayout where GridLayout and LinearLayout fill all their parent (The relativelayout). That's a way to achieve what you want ;) On Jan 11, 5:30 am, TreKing treking...@gmail.com wrote: On Tue, Jan 10, 2012 at 10:22

[android-developers] Re: How to fill the screen in GridLayout using child views?

2012-01-11 Thread Kasas
The solution is putting a RelativeLayout at the top, so you will have something like this: RelativeLayout GridLayout LinearLayout where LinearLayout and GridLayout fill their parent, the Relative Layout. Thats a way to achieve what you want ;) On Jan 11, 5:30 am, TreKing

[android-developers] Using an adapter from another class/activity

2012-01-11 Thread galapogos
Hi, How can I use an ArrayAdapter from another activity? I tried doing the following in MyListActivity.onCreate(): setListAdapter(SomeOtherActivity.myAdapter); where myAdapter is defined and initialized in SomeOtherActivity. However, I get an empty list, even though I verified that

[android-developers] Re: android gps client sending coordinates to server only if within an area

2012-01-11 Thread Kasas
In order to send the less quantity of information as posible I recommend to use Sockets instead of REST Services or SOAP, however, it will be much easier to use these services... On the other hand, I think you cannot theorically do these kind of things... because in the practice everything could

[android-developers] Lack of clarity in image

2012-01-11 Thread aru padam
Hi All, How i can avoid the lack of clarity in images when set it to an image view. Thanks Deepesh C -- 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] Getting com.google.zxing.NotFoundException problem?

2012-01-11 Thread skink
Mukesh Srivastav wrote: Venu, why do you want to re-invent the things which are already there. too much of time and resource consuming.. When use clicks on Barcode button, see whether the barcode is installed or not, if it not, guide the user to the Android market to download and use it.

[android-developers] Hi

2012-01-11 Thread chowdary nani
Hi All, I am working on json parsing i need help on sample code for passing the parsed data to list view without can any one help me for this here is my following code i am unable to display the list package com.incipio.bespoke; import java.io.IOException; import

[android-developers] Re: Activities

2012-01-11 Thread bt
Thank you TreKing. This is exactly what I was looking for. It solved an other problem of mine too. All I have to do is set an empty taskAffinity for activity D. Tamás On Jan 10, 4:45 pm, TreKing treking...@gmail.com wrote: On Tue, Jan 10, 2012 at 9:01 AM, bt barta...@gmail.com wrote: It is

Re: [android-developers] hi all

2012-01-11 Thread chowdary nani
Hi chandara your link has helped me a lot thanks for your time thanks for sending. On Wed, Jan 11, 2012 at 12:25 PM, Chandra Sekhar chandra4...@gmail.comwrote: Hi Naveen, I think this link may help u http://coderzheaven.com/2011/06/complex-json-string-parsing-in-android/ On Tue, Jan 10,

[android-developers] Re: Using multiple listview inside one activity, how to give focus to each

2012-01-11 Thread KK
hi All, Has anyone any idea on this issue? Please help me out. Appreciate your effort and time. Thanks, KK On Mon, Dec 26, 2011 at 1:13 AM, KK dioxide.softw...@gmail.com wrote: hi All, I'm using multiple listViews inside one activity. I'm using each listiview in its own UI screen layout,

[android-developers] Re: List View with Check box multiselection

2012-01-11 Thread skink
On 11 Sty, 07:52, Mukesh Srivastav mukicha...@gmail.com wrote: Hi Chander, cut lots of stuff That's it. as i said, i have done this earlier, it requries the whole process. it doesnt. it's as simple as: --- package some.test.package;

[android-developers] Should i need to free the memory of the bitmap by myself?

2012-01-11 Thread 杨辉
Hi, If i get a bitmap with the codes like this: bitmap = BitmapFactory.decodeResource(getResources(), imgList.get(imgIndex)); Should i need to free the memory of the bitmap with the following codes later. if(bitmap != null){ { bitmap.recycle(); bitmap = null; } thank

[android-developers] Issue running eclipse with android sdk

2012-01-11 Thread Zafar Khan
Hi, I have installed eclipse+android on my windows.My eclipse is installed at D:\eclipse and android sdk at D:\android-sdk-platform. To install I followed this video tutorial on youtube http://www.youtube.com/watch?v=xtsyrKdPZVwfeature=related . When I run eclipse I get this error since I

[android-developers] Proguard is not working on Eclipse Helios

2012-01-11 Thread Android Developer
Hi, I have tried exporting my Android project by adding the line proguard.config=proguard.cfg in default.properties file. It exports the apk file successfully. But I didn't find the proguard output files either under project root or under project root/bin directory. Also, no errors occurred

Re: [android-developers] hi

2012-01-11 Thread Ramu
json.data[0].id is the common JSON syntax On Tue, Jan 10, 2012 at 5:18 PM, chowdary nani naveenneeli...@gmail.com wrote: Hi All, I am working with json parsing Following is my json object will please any one help me how to parse id from that object in android

Re: [android-developers] Re: Giving away my book: Genius Android Marketing

2012-01-11 Thread abhishek agrawal
it would be nice to get these books . i am in -- 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] USB application development

2012-01-11 Thread vins
Hello friends, I m new to android application developement and want to develop an android application which monitors and handles transfer of data on USB port. whenever android device is connected to any machine this application should be triggered(launched) and should authenticate user and

[android-developers] SQLite database sync over usb to SQLServer

2012-01-11 Thread AndyM
Hello I am totally new to android. I have been given the task of creating a simple Android Application that stores data on the devices database. I assume it will be SQLite database?. The requirement is then is to connect the device via a usb cable to a pc hosting a SQLServer database. Data

[android-developers] Failed to fetch URL http://dl-ssl.google.com/android/repository/addons_list.xml, reason: File not found

2012-01-11 Thread Wei Chen
Hi, Today as I try to use the /tools/android.bat to update the Android components I got error as shown in title. Though I've forced the https to http and set the proxy. Who could help? Many thanks.- -- You received this message because you are subscribed to the Google Groups Android

Re: [android-developers] Using an adapter from another class/activity

2012-01-11 Thread Kai Cui
hi, Have you try to create a singleton model for ArrayAdapter? All your ArrayAdapters in different activities can share the same model. Kai, On Jan 11, 2012, at 4:19 PM, galapogos wrote: Hi, How can I use an ArrayAdapter from another activity? I tried doing the following in

[android-developers] Re: ImageView

2012-01-11 Thread Deepak Garg
You can use zoomview controls on the screen which will help to zoom in- zoom out. abhijeet tomar wrote: I have define a imageview in main.xml and a image store in drawable and set the path.Image is displaying properly on the screen but i want, image working as a resizeable like map.when we

Re: [android-developers] Re: invoking com.android.internal.*

2012-01-11 Thread Helen
Hello, Dianne, Thank you for the info. May I ask you several questions as follows: 1. What’s the internal implementation of “select network manually”? You may know the Android menu - Settings - Wireless networks - Mobile networks - Network operators - Search networks (select

[android-developers] Text Selection Action bar not appearing if using with JQuery Script in Android 3.1 onwards

2012-01-11 Thread Deepak Garg
Case-1 If we are not using JQuery Mobile script in our page, then there is no need of writing any code(like- emulateShiftHeld method) to enable the text selection on Webview in Android 3.0 onwards (3.0, 3.1, 3.2, 4.0, 4.0.1) Case-2 If we are using JQuery Mobile script in our page, upto Android

[android-developers] Re: new Developer

2012-01-11 Thread Deepak Garg
hi Astik Patel wrote: Helllo languae known php,jquery i m a starting in android developer please help me for which software requirement for android application in Thanks regards Astik patel -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Re: Problem about passing intent between two activities

2012-01-11 Thread Seshu
Hi which method r u using 2 call the camera using intent i.e., startActivity or StartActivityforResult(intent, REQUEST_CODE_TAKE_IMAGE); so use 2nd function it ll calls onactivityresult if it captures the image. On Dec 12 2011, 9:52 am, SH sung...@identityhive.com wrote: Hi all. I have an app

[android-developers] Re: Android documentation in PDF

2012-01-11 Thread Mehmet M.
I bundled each main subject on the android page to separate .pdf files . There is not index or any other kind of navigational content, though. http://hotfile.com/dl/141110161/55376ad/Android_Documentation.7z.html includes: Android Framework Topics Android Market Topics Android Developing Android

[android-developers] Why do my post is not shown ?

2012-01-11 Thread freefly
I have posted a message and it is not shown in the group ??? -- 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] Push Notification from sever

2012-01-11 Thread Sathya g
I am new to Android. I want integrate my app with push notification.I used xtify sdk and get the notifications.Also i want how to get the notification from server(server developed by .net ). I got the c2dm reg-ID from my app.Then i don't know how to send this reg-ID to server and receive messages

Re: [android-developers] Re: new Developer

2012-01-11 Thread Sree
hi i want to know the MVC architecture in android.please any one help me.and also with example explanation -- 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] intersection circles overlay on maps

2012-01-11 Thread moriero
I have a problem with my application that use gmaps. This application draws red circle (alpha set to 30) on the maps. But sometimes the circles overlap each other and in the intersection point the color it's different like

[android-developers] Re: Why is there no classes.dex in apk

2012-01-11 Thread Ying Wang
If dex-preoptimization is enabled (it's enabled by default in user builds), an .odex file (Email.odex in your case, just next to Email.apk) will be generated from the classes.dex and the original classes.dex is stripped from the apk. On Mon, Jan 9, 2012 at 8:45 PM, fycd doggoodf...@gmail.com

Re: [android-developers] Giving away my book: Genius Android Marketing

2012-01-11 Thread Eloy Mier Pérez
Hi Carlos, I would like to get a free copy of your bookthanks very much. Congrats for the book. Better luck for me 2012/1/10 Carlos Silva r3...@r3pek.org On Thu, Jan 5, 2012 at 15:50, scp89 jayvanbui...@gmail.com wrote: I've recently finished writing the first full-length,

[android-developers] How to set picture mode of camera?

2012-01-11 Thread Oriol
Hi all! I would like to know if there is any method in the sdk to open the camera in a given picture mode, such as in panoramic mode. 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] ActoinBar Fragments Navigation

2012-01-11 Thread Ranganaths
Hi Group, I am stuck with the Fragment Navigation with the ActionBar.Say I have 3 Fragments f1,f2,f3 associated with the 3 tabs t1,t2,t3. I have all the 3 tabs working fine with the 3 Fragments . Now in tab t1 which has the f1 fragment has a button, on click of this button i am

[android-developers] Is there any documentation for Android Frameworks?

2012-01-11 Thread Vins
I didn't mean about the framework documentation in developer.android.com , i want to understand how the android internal framework designed. like how the framework source code works internally. Thanks, Vins -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Can't get the current activity by using getLastActivity in ActivityMonitor class on Icecream

2012-01-11 Thread Cathy Chen
Steps: 1. Go into Activity A- Activity B - Activity A by sending goback keycode 2. Call getLastActivity in ActivityMonitor class Result: The current activity is still Activity B. I think it's code defect. The relate code is following. If

Re: [android-developers] Re: how to be a game developers in android

2012-01-11 Thread N
I do not think that 2 days is possible to start from nothing Start with basic java then move onwards.. you will know where to go from there I am also an aspiring mobile game dev Sent from my ASUS Eee Pad sell.bergstr sell.bergst...@googlemail.com wrote: there really should be a sub-forum (I know

[android-developers] zooming on webkit WebView

2012-01-11 Thread freefly
Hi all, I am developing an application where I need to zoom the text on the WebView, as much as a single word on the whole screen, is this possible ? I have tried with the WebView, the standard WebView zoom limits to an extend. I am new to Android development, I would really appreciate any

[android-developers] Custom List View is not Click-able when scrolling the list.

2012-01-11 Thread Seshu
Hi Every Body, I am using custom list view in my app. first time if i clicked the custom list view means it's going 2 activity, and if i scrolled the list and then click is not responding. i am not getting where the problem is coming. I wrote the list view like that LinearLayout

[android-developers] Query for you developers

2012-01-11 Thread AppyGoLuckyMe
Hi there. I have recently been looking in to app developers as I now have an interest in the industry. I can also see that apps are becoming evermore popular inspiring me to further investigate. I basically have a few questions before fully delving into the industry which I was hoping anyone on

[android-developers] need help in compiling source code

2012-01-11 Thread lambu0594
while compiling ice cream sandwich for vision i get the following error make: *** No rule to make target `out/target/product/vision/obj/ STATIC_LIBRARIES/lib_driver_cmd_wext_intermediates/ lib_driver_cmd_wext.a', needed by `out/target/product/vision/obj/

Re: [android-developers] Google App Engine and Users API and android

2012-01-11 Thread Sriram Saroop
+devx-gpe-eng - any thing to add ? I don't think you can create a App Engine connected Android Google 3 project. However, GPE does work in a limited way in the Google3 environment. More info here: https://sites.google.com/a/google.com/google-web-toolkit/Home/gpe - Sriram On Tue, Jan 10, 2012 at

[android-developers] working with XML

2012-01-11 Thread Sandro Angkat
guys, i have final thesis and is about android my project is to show music notation in android mobile phone... and the music notation is in xml format... i m still confused how to read xml and show it in android phone.. i m using eclipse... anyone can help ne please. waiting for your

[android-developers] Usage of startUsingNetworkFeature

2012-01-11 Thread Suresh
Hi, I see this API part of SDK http://developer.android.com/reference/android/net/ConnectivityManager.html#startUsingNetworkFeature(int, java.lang.String) , what is the purpose of this API? how is it useful for 3rd party applications.? Thanks, Suresh. -- You received this message because you

[android-developers] plz help

2012-01-11 Thread waqas aslam
Q#1 Suppose an application has a window and 2 menu resources, one is IDM_MENU1 and second is IDM_MENU2. While registering the window class in this application, we make IDM_MENU1 the class menu. Now, we have 2 scenarios: 1. We give the menu handle of IDM_MENU2 during creating the window. 2.

[android-developers] Setting proxy in android through code

2012-01-11 Thread Sayed Atif Ali
Hi, I need to set the proxy through my code in android devices upwards of Android 2.3.3. The only method which I know of right now is doing it through the shell in the emulator: 1. adb shell 2. # sqlite3 /data/data/com.android.providers.settings/databases/settings.db 3. sqlite INSERT INTO system

[android-developers] Nested Activity in Fragment tab

2012-01-11 Thread sumeet kumar
Hello sir Android activity Group now it is used to fragment manager to maintain back stack and multiple screen under a Fragment tab please provided the solution how to use it for multiple screen and explicit back button thanks -- You received this message because you are subscribed to the

Re: [android-developers] Giving away my book: Genius Android Marketing

2012-01-11 Thread Nish Tahir
I'm in.. On Jan 6, 2012 12:51 AM, scp89 jayvanbui...@gmail.com wrote: I've recently finished writing the first full-length, android-specific book on Android Marketing. It covers tips, tricks, strategies, competitive analysis, and so much more. Everything I've learned in 2 years selling

[android-developers] Linking folders in Eclipse for Android project

2012-01-11 Thread Praveen
Hi, I am trying to link folders to assets directory which are common among Android and iOS app (built using PhoneGap). The build finishes properly but the apk does not contain assets directory. Googling around, found some links (http://stackoverflow.com/questions/6843181/

[android-developers] How to scale video on a SurfaceView larger than the window on Android?

2012-01-11 Thread Suzy Satsuma
Android 2.2 (on a media player boxtop) with a display of 1280x720. My video is 480px high, 720px wide; standard definition. I know that if change the layouts of a SurfaceView, the video is scaled to fit whichever is smallest to maintain aspect ratio. This is great, except I can only scale up

[android-developers] Holo Theme and Overflow Button/Menu

2012-01-11 Thread William Mann
Hi, I'm finishing up an application that has an options menu (I'm using the Galaxy Nexus for development) and using the default theme everything works fine. However, I'd like to use the Holo theme and I set that up in my Manifest file. The application still works and I like the theme, but I

[android-developers] Re: Giving away my book: Genius Android Marketing

2012-01-11 Thread Weywot
I'm definitely interested -- 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: Giving away my book: Genius Android Marketing

2012-01-11 Thread LucaVidale
Hi, This seems like a useful book. I'm interested in it. Thank you Luca On 5 Gen, 17:50, scp89 jayvanbui...@gmail.com wrote: I've recently finished writing the first full-length, android-specific book on Android Marketing. It covers tips, tricks, strategies, competitive analysis, and so much

[android-developers] Error while using Sharkley's separate class adapter. Error:Array adapter requires the id to be text view

2012-01-11 Thread Satyajit Sarangi
I'm using Sharkley's adapter from here: http://jsharkey.org/blog/2008/08/18/separating-lists-with-headers-in-android-09/ I've not done any changes to the code. While implementing it got the error. Not understanding what the error is or how to remove it? -- You received this message because you

Re: [android-developers] Proguard is not working on Eclipse Helios

2012-01-11 Thread Harri Smått
Hi, The outputted .apk ought to be ran through Proguard and there's no separate non-obfuscated .apk. Proguard output itself (logs) should be found under project/proguard (if you're running under Eclipse that is at least). -- Harri On Jan 11, 2012, at 7:21 AM, Android Developer wrote: Hi,

[android-developers] I can't log into my Android Developer Account

2012-01-11 Thread randomasyalike
I have a account which I created just before Christmas. However, when I try to log in I keeping getting the following: Before you can publish software on the Android Market, you must do three things: Create a developer profile Pay a registration fee ($25.00) with your credit card

[android-developers] Charging accu in host mode

2012-01-11 Thread SunCar
is it possible to charche a tablets accumulator even when it is in host mode? my aim is to connect a CAN bus to an android tablet. for this reason i use a CAN to USB interface and swicht the tablet in the usb host mode. because the tablet is fix installed in the car i'd like to charge the

[android-developers] CTS 4.03 Under Windows Cygwin gives NoClassDefFoundError

2012-01-11 Thread Amit
Hi All, I am trying to run the CTS 4.03 under Windows XP using the Cygwin. When i try to run ./cts-tradefred under cygwin, I get the following error- java.lang.NoClassDefFoundError: com/android/cts/tradefed/command/ CtsConsole Caused by: java.lang.ClassNotFoundException:

Re: [android-developers] Push Notification from sever

2012-01-11 Thread T.M.S.VIJAYKUMARR
Server side u have to write code for get reg id and sending message. On Wed, Jan 11, 2012 at 1:01 PM, Sathya g sathiya...@gmail.com wrote: I am new to Android. I want integrate my app with push notification.I used xtify sdk and get the notifications.Also i want how to get the notification

[android-developers] jquery modal not getting displayed in android emulator

2012-01-11 Thread Yashwanth
I have a html page which shows modal in the web browser. I'm integrating that html in Android app using WebView. In emulator the modal is not getting displayed. Please let me know if I'm doing anything wrong here or if any config is needed? The below are the code snippets: div style=width:

[android-developers] Mouse cursor

2012-01-11 Thread Paulo Vagner
Hello, I have a good development board FriendlyArm, running Android 2.3. Good consigui acknowledge even the keyboard and mouse into the USB port host adapter, but when I put the mouse cursor does not appear. How do I enable this cursor? I tried several more I could not patch any results -- You

[android-developers] App can't start after Force Stop

2012-01-11 Thread youxianshi
I have an application which receive the broadcast BOOT_COMPLETED event and it works well on 2.x devices. But on 3.x and 4.x devices, when I Force Stop my application in Applications-Manage Applications, and reboot device, my application can't start automatically. Can anybody tell me why my app

Re: [android-developers] Push Notification from sever

2012-01-11 Thread sparky
What Vijay Kumar said. See http://code.google.com/android/c2dm/#example. -- 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] Push Notification from sever

2012-01-11 Thread Arun C G
Hi Sathya, See the c2dm developers page (http://code.google.com/android/c2dm/) for more information. 1. The android device needs to send this registration id to the server. The server should store this when it makes a request. 2. The server should use this id as one of the inputs in its request

[android-developers] Re: Permission Denial: starting Intent when launching my activity from my widget

2012-01-11 Thread Dirk Vranckaert
Problem solved... How? I don't have a clue... But it's solved. At 4PM yesterday I tried to push the button on my widget, still same problem. At 8PM I tried it again and suddenly it worked... I did not install any upgrade or whatever so it must have been a failure of my Android device (Nexus1).

Re: [android-developers] Giving away my book: Genius Android Marketing

2012-01-11 Thread Andoko Chandra
I'm interested... I will recommend this book to all my colleages if the content is as good as the description On Thu, Jan 5, 2012 at 11:50 PM, scp89 jayvanbui...@gmail.com wrote: I've recently finished writing the first full-length, android-specific book on Android Marketing. It covers tips,

[android-developers] Re: Giving away my book: Genius Android Marketing

2012-01-11 Thread Amit
Nice...I am also a writer :) Keen to learn this aspect of android as well !! On Jan 10, 5:53 am, John-Marc Desmarais jades...@gmail.com wrote: I'll play. Sign me up. -jm On Mon, Jan 9, 2012 at 3:45 PM, YuviDroid yuvidr...@gmail.com wrote: Looks very interesting! Count me in!  :)

[android-developers] Need Help

2012-01-11 Thread Seshu
Hi All, I am developing a small application which requires listview with images, textImage and icon. i,e., icon image and icon text is on background button like that and background button is look like steps type i.e., incrementing width. can anyone tell me how to implement this problem

[android-developers] Re: Anyone ever used androidpit's lvl mechanism? Is it trustworthy?

2012-01-11 Thread H
I've been with androidpit for a good few months now. I don't have any problems or issues with them so far - they seem to have thought things through quite well and produced (imho) a decent competitor. 1. As Kostya mentioned above, they track the Market and mail you within an hour if you haven't

[android-developers] back button in actiovity group

2012-01-11 Thread vani reddy
HI friends, I have a Tab activity, in it i have an activity group in it there are 3 activities. The first and second activities contain custom listviews which dont extend list activity, the third activity is a normal activity . On press of a button in third activity the app closes. I have

Re: [android-developers] back button in actiovity group

2012-01-11 Thread Ratheesh Valamchuzhy
try this public boolean onKeyDown(int keyCode, KeyEvent event) { if (keyCode == KeyEvent.KEYCODE_BACK) { moveTaskToBack(true); return true; } return super.onKeyDown(keyCode, event); } public void backButtonPressed(View v) { //do this } -- You received this

Re: [android-developers] back button in actiovity group

2012-01-11 Thread vani reddy
Thanks. I tried this , the problem is onKeyDown is never fired On Wed, Jan 11, 2012 at 5:41 PM, Ratheesh Valamchuzhy android...@gmail.comwrote: try this public boolean onKeyDown(int keyCode, KeyEvent event) { if (keyCode == KeyEvent.KEYCODE_BACK) { moveTaskToBack(true);

Re: [android-developers] Need Help

2012-01-11 Thread Robinns
What have you done so far? and where did you find some sort of problems. Untill you show something to us on what you have done? How would anyone here know what you are upto? On Wed, Jan 11, 2012 at 5:39 PM, Seshu s.seshu...@gmail.com wrote: Hi All, I am developing a small application

[android-developers] It is possible to send a notification with C2DM to all the users of an App?

2012-01-11 Thread saex
I'm checking this link: http://android-developers.blogspot.com/2010/05/android-cloud-to-device-messaging.html there explains that to send a notification, you need to specify the register id of the device that will receive the notification. Ok, but... ¿what happens if i want to send a

[android-developers] Re: how to be a game developers in android

2012-01-11 Thread sell.bergstr
I meant this as a joke. 2 years is more realistic On 10 Jan., 19:58, N nishtahi...@gmail.com wrote: I do not think that 2 days is possible to start from nothing Start with basic java then move onwards.. you will know where to go from there I am also an aspiring mobile game dev -- You

Re: [android-developers] It is possible to send a notification with C2DM to all the users of an App?

2012-01-11 Thread Mark Murphy
On Wed, Jan 11, 2012 at 7:33 AM, saex elpablos...@gmail.com wrote: I'm checking this link: http://android-developers.blogspot.com/2010/05/android-cloud-to-device-messaging.html there explains that to send a notification, you need to specify the register id of the device that will receive the

Re: [android-developers] App can't start after Force Stop

2012-01-11 Thread Mark Murphy
On Wed, Jan 11, 2012 at 4:29 AM, youxianshi zhengyingf...@gmail.com wrote: I have an application which receive the broadcast BOOT_COMPLETED event and it works well on 2.x devices. But on 3.x and 4.x devices, when I Force Stop my application in Applications-Manage Applications, and reboot

Re: [android-developers] Is there any documentation for Android Frameworks?

2012-01-11 Thread Mark Murphy
That has nothing to do with this list. Please visit http://source.android.com to learn more about the Android firmware, including Google Groups that may be more relevant to you. On Tue, Jan 10, 2012 at 7:38 PM, Vins vinaayak...@gmail.com wrote: I didn't mean about the framework documentation in

[android-developers] Re: CTS 4.03 Under Windows Cygwin gives NoClassDefFoundError

2012-01-11 Thread Amit
Hi All, I was able to overcome these initial problems by playing with the script file and class path setting. Now I do not get and such DefNotFOund Error. The next issue is that i am not getting the CTC prompt. The current output of ./cts-tradefed is - Android CTS 4.0.3_r1 No commands for

[android-developers] Re: It is possible to send a notification with C2DM to all the users of an App?

2012-01-11 Thread rde8026
It works very much the same way (conceptually at least) as iOS. You can send a message to all users of an app; if and only if those users of the app are registered. When you sign up for C2DM (via the website) you need to provide an e- mail address, this e-mail address is the what they are

Re: [android-developers] Setting proxy in android through code

2012-01-11 Thread Mark Murphy
On Tue, Jan 10, 2012 at 9:39 PM, Sayed Atif Ali sayed.atif@gmail.com wrote: I need to set the proxy through my code in android devices upwards of Android 2.3.3. The only method which I know of right now is doing it through the shell in the emulator: 1. adb shell 2. # sqlite3

Re: [android-developers] Re: invoking com.android.internal.*

2012-01-11 Thread Mark Murphy
None of this has anything to do with this list. Please visit http://source.android.com to learn more about the Android firmware, including Google Groups that may be more relevant to you. On Tue, Jan 10, 2012 at 1:15 PM, Helen helen.t...@orchestratec.com wrote: Hello,  Dianne, Thank you for the

Re: [android-developers] Should i need to free the memory of the bitmap by myself?

2012-01-11 Thread Mark Murphy
Calling recycle() accelerates how quickly your bitmap memory can be returned to the heap. If it is convenient for you to call recycle(), it can certainly help avoid OutOfMemoryErrors. However, with the Bitmap object is garbage-collected, the finalizer will recycle() it for you, so unless you are

[android-developers] Re: Custom List View is not Click-able when scrolling the list.

2012-01-11 Thread rde8026
you should post your code (formatted correctly) no a summation of your code. also, you should post the code for the adapter you used to populate the list. this would possibly get you some answers. On Jan 10, 9:27 am, Seshu s.seshu...@gmail.com wrote: Hi Every Body,        I am using custom

[android-developers] Re: How to set picture mode of camera?

2012-01-11 Thread sparky
There is not. You open the camera, then set the parameters to configure the mode you want. -- 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: It is possible to send a notification with C2DM to all the users of an App?

2012-01-11 Thread saex
No this way is not possible for my app. Think on millions of users, i can't create a loop of milions of iterations sending a notification In apple is possible to send the notification to an app and all their users, without doing a loop. Is not possible to do the same with android???

Re: [android-developers] Re: It is possible to send a notification with C2DM to all the users of an App?

2012-01-11 Thread Mark Murphy
On Wed, Jan 11, 2012 at 8:07 AM, saex elpablos...@gmail.com wrote: No this way is not possible for my app. Think on millions of users, i can't create a loop of milions of iterations sending a notification Then C2DM is not your solution. C2DM is for personalized notifications. -- Mark

[android-developers] Re: It is possible to send a notification with C2DM to all the users of an App?

2012-01-11 Thread saex
and wich is the better solution i can use for my needs? On 11 ene, 14:16, Mark Murphy mmur...@commonsware.com wrote: On Wed, Jan 11, 2012 at 8:07 AM, saex elpablos...@gmail.com wrote: No this way is not possible for my app. Think on millions of users, i can't create a loop of milions of

[android-developers] Re: How to implement multiple Android versions to use different libraries?

2012-01-11 Thread Jeff A Knaggs
Similar to Kostya's suggestion, but requires less knowledge of eclipse/ ant/java; however, it doesn't meet your criteria of I prefer to keep my app in one single project. This is what I came-up with before libraries were available; it's not fully automated. But, if you're old-school like me and

[android-developers] Re: Custom List View is not Click-able when scrolling the list.

2012-01-11 Thread Ali Chousein
So, what exactly is the problem you are facing? If I understand you correctly, clicking on list items does not respond, right? What do your list items have? Do they have any clickable objects, like buttons, checkboxes and similar? If yes, then you should make these objects non-clickable.

Re: [android-developers] Re: It is possible to send a notification with C2DM to all the users of an App?

2012-01-11 Thread Mark Murphy
On Wed, Jan 11, 2012 at 8:21 AM, saex elpablos...@gmail.com wrote: and wich is the better solution i can use for my needs? Have your app check your Web server for updates periodically. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy

Re: [android-developers] working with XML

2012-01-11 Thread TreKing
On Tue, Jan 10, 2012 at 10:32 PM, Sandro Angkat sandroang...@gmail.comwrote: i m still confused how to read xml and show it in android phone.. Confused about what? There is nothing Android-specific about XML. There are various classes available for reading XML - have you tried looking at the

[android-developers] Re: how to be a game developers in android

2012-01-11 Thread cellurl
use appinventor in a few wks when it resurfaces. http://info.appinventor.mit.edu/ I wrote a game in it in 1hr. No Java required. Or a thing called scratch, It looks the same, perhaps not Android?? Dunno. http://scratch.mit.edu/ Many games are written in higher level software like this, you just

Re: [android-developers] Re: how to be a game developers in android

2012-01-11 Thread TreKing
On Wed, Jan 11, 2012 at 8:15 AM, cellurl gpscru...@gmail.com wrote: use appinventor in a few wks when it resurfaces. http://info.appinventor.mit.edu/ I wrote a game in it in 1hr. No Java required. Would you share? Please. I would love to know what kind of game you can make with app inventor

[android-developers] Re: how to be a game developers in android

2012-01-11 Thread Seshu
Hi Nomikhan, Its very difficult to develop a game using Android SDK. Still we can develop by using either Android SDK with OpenGL ES1.0 or Android NDK(Native Development Kit). By Using these both options we can develop but its very difficult to develop a game. Better try to do a

[android-developers] Re: Can the LVL check for Paid app be done from my free app ?

2012-01-11 Thread androidmediadeveloper
got confirmation from the google developers, the check for a paid app cannot be done from inside of any other app, even if it is from the same publisher signed with the same key. So, that is that I guess. On Dec 6 2011, 12:21 pm, Kevin TeslaCoil Software ke...@teslacoilsw.com wrote: Recently

[android-developers] android provide call

2012-01-11 Thread Live Happy
*how to make android application when the user click on the phone call button than the application provide itself to make call. as skype and viber*? thnks for reply -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] Re: new developer tools (rev 16) breaks the ant build for LVL, needs build.xml on the library project

2012-01-11 Thread androidmediadeveloper
For anyone else who has this problem, the answer as I figured out turns out to be fairly simple. The only thing that build.xml on the LVL project should have is this property name=project.is.library value=true / this is apart from other standard build file plumbing. On Jan 10, 10:06 am, Fred

Re: [android-developers] Re: how to be a game developers in android

2012-01-11 Thread Greg Donald
On Wed, Jan 11, 2012 at 8:18 AM, TreKing treking...@gmail.com wrote: On Wed, Jan 11, 2012 at 8:15 AM, cellurl gpscru...@gmail.com wrote: use appinventor in a few wks when it resurfaces. http://info.appinventor.mit.edu/ I wrote a game in it in 1hr. No Java required. Would you share? Please.

  1   2   3   >