[android-developers] Parsing JSON from Grails application

2011-11-09 Thread vidya
Hi, I'm an Android newbie and am trying to parse/receive JSON data sent from a Grails Web application (controller-action). I'd appreciate any pointers in this direction or some sample code that shows how to exchange JSON data between an Android application and a Grails application. Thanks in adva

[android-developers] Re: using ZXING API in a application

2011-11-09 Thread Delacyr Ferreira
If you want to integrate zxing in your app natively, try this: http://damianflannery.wordpress.com/2011/06/13/integrate-zxing-barcode-scanner-into-your-android-app-natively-using-eclipse/ On 8 nov, 12:55, melakamc wrote: > i need to use ZXING API in my own application without forwarding it to >

[android-developers] Re: sqlite database

2011-11-09 Thread Jim Lindsey
I think that's a great idea. On Nov 8, 12:12 pm, Narendra Singh Rathore wrote: > hi frnds, I actually want to show my database table in tabular form in > my avd. Is there any simple way to achieve that. > I am currently using single class for database (no sqliteDBHelper), > with the help of curso

[android-developers] Re: Using chimpchat

2011-11-09 Thread Misha
Did you ever figure out how to use this? I am trying to do the same. -- 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 andr

Re: [android-developers] SDK(Android 4.0) launch fail when GPU emulation is activated from the SDK config window

2011-11-09 Thread Daniel Wung
I can launch the emulator w/ GPU emulation enabled on Linux But unfortunately, the system image itself does not support GPU emulation... 2011/11/8 Ramaraj Bijur > Dear fellows > > Please help me to launch the Android 4.0 emulator on MS-Windows- > XP(SP-3) OS. > As of now i am getting below error

[android-developers] isSpeakerphoneOn() doesn't return the correct value

2011-11-09 Thread Tejash Shah
I am developing an application on the Android 2.3 platform. In numerous scenarios such as playing video within the browser, playing recorded video from the local disk, among others, isSpeakerphoneOn() API of AudioManager class of android.media.AudioManager doesn't return the correct value even thou

Re: [android-developers] Looking for a tester

2011-11-09 Thread 金光是党员
do u pay the tester? 2011/11/9 Alexander Turda > I'm looking for a tester,and a person to help me add content to my > games.No knowledge in programming/design or anything required. I'm > also planning to make a team,to release a new game every 2 months(paid > game). > > -- > You received this me

Re: [android-developers] sqlite database

2011-11-09 Thread Abhijeet Kinjawadekar
Hey narendra its simple just google for android dynamically add rows to table layout http://technotzz.wordpress.com/2011/11/04/android-dynamically-add-rows-to-table-layout/ or http://bit.ly/uSm16G Regards, Abhijeet On Tue, Nov 8, 2011 at 11:42 PM, Narendra Singh Rathore < nsr.curi...@gmail.co

Re: [android-developers] Keeping an activity alive

2011-11-09 Thread Pawan Singh Rathore
The best practice is to launch webview by some user event, Even if you want, then you can maintain a flag inside onDestroy() method of Activity, that activity is destroyed or just gone into background. Hope it helps Thanks & BR, Pawan Rathore On Wed, Nov 9, 2011 at 1:26 PM, cipher_neo wrote:

Re: [android-developers] Looking for a tester

2011-11-09 Thread marc dupuich
Interested by this tester job too, I make numerical music for games too with my synthesisers and Mac I can test on many differents mobile platforms have a nice day, Marc http://soundcloud.com/marcdupuich/4u-gift 2011/11/9 金光是党员 > do u pay the tester? > > > 2011/11/9 Alexander Turda > >> I'm look

[android-developers] Difference between auto sync and push notification

2011-11-09 Thread Android Developer
Hi All, What is the difference between auto sync and c2dm. if both are not same then tell me about auto sync and how its work. Thanks Mani -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-deve

Re: [android-developers] sqlite database

2011-11-09 Thread Narendra Singh Rathore
Thnx buddiesn my almost prob solved. But, even now, a li'l problem is still left that how to add my DB table column values to that table column...Please direct me. >> -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this gr

Re: [android-developers] Looking for a tester

2011-11-09 Thread Yahor Paulavets
Hello Alexander, I'm lead of the Automated Testing department. We have dedicated and extremely professional QA experts in our team, for You. We have 2+ years of successful expierence working for the world biggest ebooks seller - B&N, producing a lot of automated tests for Android (any device type

[android-developers] Re: Keeping an activity alive

2011-11-09 Thread RLScott
The app may be put into background when you press the home button, but the activity itself is always destroyed. So onCreate will be called every time it becomes visible. If you want to preserve some content in your app, then don't store that content as part of the activity class. Store it in a g

[android-developers] Re: ERROR/libEGL(206): call to OpenGL ES API with no current context

2011-11-09 Thread hhenne
Hi, Try to add a Log statement to your constructor, to see if you have more than one SurfaceView created. Hardy Henneberg http://www.maxikeys.com On Nov 7, 12:11 pm, saex wrote: > First of all, this is not a duplicate of other questions with similar > error, because in these questions, the sol

[android-developers] Re: Mixing OpenGL with Android Lifecycle.

2011-11-09 Thread hhenne
Hi, Try to add a Log statement to your SurfaceView constructor to see if more that one SurfaceView is created Hardy Henneberg http://www.maxikeys.com On Nov 6, 12:54 am, "millerni...@hotmail.com" wrote: > Hey I tried posting this before but I don't think it went through. So > I'll explain my er

[android-developers] Checkedtextview not able to uncheck

2011-11-09 Thread vani reddy
Hi, How to uncheck the Checked textview in customlistview of a white background. This is the xml part: in java i am usinglike this: chtextview.setOnClickListener(new View.OnClickListener() { public void onClick(View v) { System

[android-developers] Re: Need help on connecting android app to remote database.

2011-11-09 Thread hhenne
Also recommends REST services and using JSON. Recommends Playframework as server for implementing REST services. On the client side you can use a RestClient class to help you with communication. Google for it. Use the AsyncTask object for handling server communication in background. Use the org.jso

Re: [android-developers] Understanding the lifecycle of ViewPager

2011-11-09 Thread Mark Murphy
On Tue, Nov 8, 2011 at 10:51 PM, Chris Stewart wrote: > Thanks for the reply Dianne.  I'm not completely sure what you mean by > custom loader, are you referring to what was introduced in 3.2?  If so, is > it available in the support library for pre-3.2? The Loader framework is in the Android sup

Re: [android-developers] Re: Need help on connecting android app to remote database.

2011-11-09 Thread Ratheesh Valamchuzhy
this will really help http://www.helloandroid.com/tutorials/connecting-mysql-database -- 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,

Re: [android-developers] Re: Keeping an activity alive

2011-11-09 Thread Mark Murphy
On Wed, Nov 9, 2011 at 5:32 AM, RLScott wrote: > The app may be put into background when you press the home button, but > the activity itself is always destroyed. No. An activity is immediately destroyed for a BACK press, or a finish() call, but not HOME. > So onCreate will be called > every tim

Re: [android-developers] Notification question

2011-11-09 Thread Mark Murphy
Interactive widgets, like buttons, are not supported in Android's notification drawer until Android 4.0. So, while they may work on some devices, that is a side-effect of how those devices' home screens were implemented. They will not work across all devices (until all devices are on API Level 14+

[android-developers] GluProject not working… If the object haves Z=-1.0f and it is scaled to (0.01f,0.01f,0.0f) wich parameters i have to pass to GluProject?

2011-11-09 Thread saex
until now, i worked with GluProject, perspective projection, and a zoomable square centered on the screen with a lower left vertex (-1,-1,0). I zoom the square adjusting the Z axis. For example, i zoomed the square to Z=-5, and i call gluProject with the openGL object parameters (-1,-1,0) to know

Re: [android-developers] sqlite database

2011-11-09 Thread Narendra Singh Rathore
Thnx a lot friends, I achieved my goal.. With Regards.. Narendra -- 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-

Re: [android-developers] Re: using ZXING API in a application

2011-11-09 Thread Melaka Atalugamage
when you use that, the QRcode reader (a separate activity) come in to play and then scan the QR code yeah? i have developed a camera application and i need to direct the image taken via my application to the API and get the results. is it possible? On 9 November 2011 07:42, Delacyr Ferreira wrot

Re: [android-developers] Looking for a tester

2011-11-09 Thread Subanand Thiruppathirajan
I will be interested to help on the content. On Tue, Nov 8, 2011 at 8:54 PM, Alexander Turda wrote: > I'm looking for a tester,and a person to help me add content to my > games.No knowledge in programming/design or anything required. I'm > also planning to make a team,to release a new game every

Re: [android-developers] Looking for a tester

2011-11-09 Thread Melaka Atalugamage
I would like to help you in this matter. im a heavy gamer by myself. so I think I'm up for this On 9 November 2011 17:56, Subanand Thiruppathirajan wrote: > I will be interested to help on the content. > > > On Tue, Nov 8, 2011 at 8:54 PM, Alexander Turda > wrote: > >> I'm looking for a tester,a

[android-developers] Pro Android Games

2011-11-09 Thread bob
Anyone have this book, Pro Android Games? http://www.amazon.com/Pro-Android-Games-Books-Professionals/dp/1430226471/ref=sr_1_19?s=books&ie=UTF8&qid=1320841329&sr=1-19 The guy makes a game. He derives the main widget from LinearLayout. Was expecting him to subclass View, the more obvious choice.

[android-developers] Sending Multiple Request

2011-11-09 Thread Jovish P
Is it possible to send multiple request to the server at the same time and merge the response of those request ? If it is , which is the best way to implement it ? Async Task or Threading ? If any one have sample code , please share it if you don't mind . -- You received this message becau

[android-developers] Android Library

2011-11-09 Thread Mark Cz
I've found the above in the release notes of library projects "Developers asked us for the ability to distribute a library as a single jar file that included both compiled code and resources..." http://android-developers.blogspot.com/2011/10/changes-to-library-projects-in-android.html Can I exp

Re: [android-developers] Android Library

2011-11-09 Thread Mark Murphy
Not today. They are part-way there now -- a library project generates a JAR that the host project then uses, instead of linked source folders (in Eclipse) or equivalent techniques. However, that JAR cannot be used outside of the library project. With luck, R16 will support distribution of library

[android-developers] unable to access dictionary

2011-11-09 Thread Dev
I have kept the offline database of the dictionary,but it still asking for the internet connection or offline database -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com

Re: [android-developers] Customize Android Source Code to run multiple Application on same Screen.

2011-11-09 Thread Pawan Singh Rathore
Ok, So I need to customize WindowManager and WindowMangerService etc.. Because WindowManager draws surface for Application, If somehow I can customize window manager in that way that it draws surface for two application, then I'll be able to show two different application on same screen. Am I in r

Re: [android-developers] Customize Android Source Code to run multiple Application on same Screen.

2011-11-09 Thread Kostya Vasilyev
First and foremost, you're on the wrong list. Find a more appropriate one here: http://source.android.com/community/index.html 09.11.2011 16:58, Pawan Singh Rathore пишет: > Am I in right direction? > -- Kostya Vasilyev -- You received this message because you are subscribed to the Google G

Re: [android-developers] Difference between auto sync and push notification

2011-11-09 Thread Android Developer
Hi All, And how do we set the interval for autosync. Thanks mani On Wed, Nov 9, 2011 at 2:29 PM, Android Developer wrote: > Hi All, > > What is the difference between auto sync and c2dm. if both are not > same then tell me about auto sync and how its work. > > > > Thanks > Mani > > -- > You re

Re: [android-developers] Customize Android Source Code to run multiple Application on same Screen.

2011-11-09 Thread Pawan Singh Rathore
You mean to say on wrong group, I have applied to those groups for membership. Since some people are common on all the groups, so trying luck here. I can't sit and wait for approval. Thanks & BR, Pawan Rathore On Wed, Nov 9, 2011 at 6:31 PM, Kostya Vasilyev wrote: > First and foremost, you'

[android-developers] hyperlink using textview

2011-11-09 Thread Narendra Singh Rathore
hey friends, can anyone please suggest me how to use textview as a hyperlink.. Thnx in advance.. NSR.. -- 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 f

[android-developers] does android.media.Mediaplayer support asf stream playing ?

2011-11-09 Thread KK
hi All, I was just trying to figure out, if there is any option for playing ASF streams. I tried searching in google but couldn't find any solid answer. Would appreciate if someone can let us know if the the inbuilt mediaplyer( android.media.MediaPlayer) supports playing this format, can we play as

[android-developers] AVRCP controller app

2011-11-09 Thread suci
Hi, Trying to implement TV Remote Control app using AVRCP. Looks like framework does not support this. Volume up and volume down commands are used specific to Bluetooth.A2DP. Hence has to incorporate the changes in the framework. But i'm stuck at connection establishment part. Profile requires open

[android-developers] Reg : Adding the overlay on a static image map in Android

2011-11-09 Thread Gopi Krishnan T
Hi, I have brought the image (Say a static one) with in web view from my application assets folder and added with that i have given all the settings for the web view like enabling the JS,Zoom Controls ..etc. and made the web view to get loaded within the application, once its get launched.Since it

[android-developers] How many application i can upload with one account and whats the validity of that account/ application?

2011-11-09 Thread Sawan Darekar
to sign up my android developer account there is 25$ so how many application i can upload with one account and whats the validity of that account? and for how many days it will besides at android market -- Thanks & Regards, Sawan Darekar. Software Developer AlphaBricks Technologies Pvt. Ltd. Pun

Re: [android-developers] hyperlink using textview

2011-11-09 Thread Pawan Singh Rathore
Why are you keep asking such a simple questions. No one gonna write codes for you,and giving you suggestions. Try out yourself. If you'll have some issue thn post your code here. Thanks & BR, Pawan Rathore On Wed, Nov 9, 2011 at 6:46 PM, Narendra Singh Rathore < nsr.curi...@gmail.com> wrote:

[android-developers] Can any one give me the steps for building android source code to .mk file.

2011-11-09 Thread ramana reddy
Hi all, This is Venkata Ramana, I was downloaded android 2.3 version source and i added some driver programs which are related to my target board. After i try to build total source to .img files but it giveing error like: find: `/res': No such file or directory No private recovery reso

[android-developers] error on Installation INSTALL_PARSE_FAILED_MANIFEST_MALFORMED

2011-11-09 Thread vitaly87
Hello all! I have an error on runing my app. I am getting this error: Installation error: INSTALL_PARSE_FAILED_MANIFEST_MALFORMED [2011-11-09 11:43:46 - news] Please check logcat output for more details. [2011-11-09 11:43:46 - news] Launch canceled! my cat log is: attach of thread binder thred #

[android-developers] Tests. Sending touch events to activity.

2011-11-09 Thread Stanislav G
Hi , I am new in testing for Android, so help me please. How can I send touch events to testing acivity ? In google documentation talks only about sendKeys. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email t

[android-developers] Re: Transfer medical images to galaxy tab(android)

2011-11-09 Thread yogi
I came across this Dicom viewer for android. https://sites.google.com/site/adiview/ This would be one of the solutions. Other solution that I can think of is an HTML5 canvas based viewer for dicom over WADO. Having said that, I agree with earlier posts, we need a PACS server in middle to hold ima

[android-developers] 註冊開發人員

2011-11-09 Thread 振銘 呂
我2011/7/7註冊 google market 開發人員 為什麼我現在登入還要我付費... 請問這要與誰聯絡 台灣google有客服嗎? 本身英文粉爛... -- 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, se

Re: [android-developers] Customize Android Source Code to run multiple Application on same Screen.

2011-11-09 Thread Kristopher Micinski
I think the truth is that doing this requires some fairly fundamental changes to the window manager, and if you really want to do it, you're going to have to spend a few months reading up on the implementation before you can start doing work. (I.e., the concern is that if people thought you would

Re: [android-developers] hyperlink using textview

2011-11-09 Thread Narendra Singh Rathore
sry pawan, if u guess it silly question, bt I just thought I came at ryt place. U can just suggest me the way, if u wish, else is my part.. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-develop

Fwd: [android-developers] hyperlink using textview

2011-11-09 Thread Jovish P
Just refer the following links http://mgmblog.com/2009/01/06/four-different-ways-of-opening-a-web-page-in-android/ http://pareshnmayani.wordpress.com/2011/07/08/android-textview-autolink-attribute/ -- Forwarded message -- From: Pawan Singh Rathore Date: Wed, Nov 9, 2011 at 6:5

[android-developers] Re: hyperlink using textview

2011-11-09 Thread skink
On Nov 9, 2:16 pm, Narendra Singh Rathore wrote: > hey friends, can anyone please suggest me how to use textview as a > hyperlink.. > Thnx in advance.. > NSR.. see: http://developer.android.com/reference/android/text/util/Linkify.html pskink -- You received this message because you are subsc

Re: [android-developers] Can any one give me the steps for building android source code to .mk file.

2011-11-09 Thread Mark Murphy
Step #1: Visit http://source.android.com Step #2: Click on the Community tab Step #3: Find a relevant Google Group (as this one is for developing apps with the Android SDK) Step #4: Ask your question there On Wed, Nov 9, 2011 at 4:20 AM, ramana reddy wrote: > Hi all, > >  This is Venkata Raman

Re: [android-developers] Phone Deployment Issue

2011-11-09 Thread Mark Murphy
If you are running on Windows (which is what the screenshot suggests), you need to install the development USB drivers, so adb and the rest of the Android tools will recognize your device: http://developer.android.com/sdk/oem-usb.html On Wed, Nov 9, 2011 at 5:21 AM, Navindian wrote: > Hi > > I h

[android-developers] Android Library

2011-11-09 Thread Michael Leung
Hi, I wish to build an in-house library in Android. I wish to do somethings like this: public class BaseActivity extends Activity { public void displayMessage(String text) { Toast.makeText(this, text, Toast.LENGTH_LONG); } } But I cannot do somethings like this: public class MyActivity extends B

Re: [android-developers] GluProject not working… If the object haves Z=-1.0f and it is scaled to (0.01f,0.01f,0.0f) wich parameters i have to pass to GluProject?

2011-11-09 Thread Latimerius
I'd consider it highly unlikely that gluProject() doesn't work, you're probably misinterpreting the values it gives you - or the values you pass it. I haven't ever used gluProject() but I reckon you have to pass world coordinates to it. So my first try would be to take the geometry, apply the appr

Fwd: [android-developers] attachment through mail

2011-11-09 Thread Jovish P
Try this one public static void sendAsAttachment(Context context, File file){ Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND); emailIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL,new String[] { " cta...@gmail.com" }); e

Re: [android-developers] Application incompatible when trying to install on Galaxy 10.1

2011-11-09 Thread String
There are two pieces to this puzzle, I think. First, in the top level of your manifest, you should have an element like this: Second, under Properties > Android for your project in Eclipse, make sure that the build target is 14 (4.0). This combination is working fine for me with a number

Re: [android-developers] Difference between auto sync and push notification

2011-11-09 Thread Android Developer
Hi All, I dont think we can set the time interval for auto sync. Thanks Mani On Wed, Nov 9, 2011 at 6:33 PM, Android Developer wrote: > Hi All, > > And how do we set the interval for autosync. > > > Thanks > mani > > > On Wed, Nov 9, 2011 at 2:29 PM, Android Developer > wrote: > >> Hi All, >>

[android-developers] 周俊杰想要聊天

2011-11-09 Thread 周俊杰
--- 周俊杰希望通过 Google 的一些最炫酷的新产品与您保持更密切的联系。 如果您已经拥有 Gmail 或 Google Talk,请访问: http://mail.google.com/mail/b-8daa9f747-1a38170dd5-TV1shqCHUj2F1qrTRWdwPO2gD90 您需要点击此链接才能与周俊杰聊天。 要获取 Gmail(Google 提供的免费电子邮件帐户,存储空间超过 2,800 MB)并与周俊杰聊天,请访问:

[android-developers] Use the Gyroscope to improve the orientation

2011-11-09 Thread Ferro Francesco
Hello everybody, I'm trying to get the best heading estimation of my phone. To be more precise, I'm only interested on the Azimuth value (angle from the north). the API offer ready to use function like TYPE_ORIENTATION (Deprecated): the result is shit :), it's very unstable and not very precise

Re: [android-developers] Re: Cannot get PhoneNumber on Real device but code works in Emulator

2011-11-09 Thread Mark Ellul
As far as I have ascertained, this issue is not an Android issue, it has to do with the Sim and access to the Sim given to Android by the provider. So basically, if you get a Null its because the phone doesn't know its own phone number, and you have to ask the user, or does some work around, lik

Re: [android-developers] AVRCP controller app

2011-11-09 Thread Kristopher Micinski
The current api doesn't support L2CAP channels .., :-(., sorry. kris On Wed, Nov 9, 2011 at 3:20 AM, suci wrote: > Hi, > Trying to implement TV Remote Control app using AVRCP. Looks like > framework does not support this. Volume up and volume down commands > are used specific to Bluetooth.A2DP.

Re: [android-developers] AVRCP controller app

2011-11-09 Thread Kristopher Micinski
*sockets. See http://code.google.com/p/android/issues/detail?id=719 On Wed, Nov 9, 2011 at 10:53 AM, Kristopher Micinski wrote: > The current api doesn't support L2CAP channels .., :-(., sorry. > > kris > > On Wed, Nov 9, 2011 at 3:20 AM, suci wrote: >> Hi, >> Trying to implement TV Remote Cont

[android-developers] Screen orientantion and dialogs problem.

2011-11-09 Thread ikki_fenix
Hello, I'm developing my first application that consist and application that has 2 tabs and each tab has 4 buttons. Each button opens a Dialog or alertDialog to deal with different functions. All functionality is contained in one activity I know that the activty restarts each time the screen or

[android-developers] how to play a video frame by frame with mediaplayer?

2011-11-09 Thread 杨辉
hi, I want to play a video frame by frame with the mediaplayer in android. for example. there is a video which framerate is 20fps(frame per second). As i think,for 50ms,a frame will pass. what i want is this,*every time i click the frame button,the video play a frame more or less.* here is

[android-developers] Android. How to clear permission

2011-11-09 Thread Ray da Costa
Staff a help, I need to write the file ini.rc Android. How to clear permission to write and record? tks. -- Ray da Costa "The best way to predict the future is to invent it." Alan Kay -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To pos

[android-developers] QR Code Question (the sort of barcode looking thing)

2011-11-09 Thread Tommy Hartz
I was wondering how one gets the QR code(I think that's what its called) The sort of barcode looking thing that you can take a picture of and have it take you to the app on the market place. Is that provided for you by the market when you put your app up? Thanks for the help, Tommy -- You

[android-developers] Re: TFTP (Trivial File Transfer Protocol) support

2011-11-09 Thread Diego Torres Milano
Why don't you just use HTTP ? On Nov 9, 1:41 am, "petr.maza...@mautilus.com" wrote: > According to my information the SDK does not support directly the > TFTP. > > Are the any other ways how to deal with the missing API? Was anybody > tried to use org.apache.commons.net.tftp? Are there any experi

[android-developers] Re: How to send DHCPINFORM request

2011-11-09 Thread Diego Torres Milano
Not from the SDK On Nov 9, 12:28 am, "petr.maza...@mautilus.com" wrote: > Is it possible to send manually the DHCPINFORM request? I was > searching the SDK and I did not found any class that allows creating > and broadcasting the DHCPINFORM (see RFC 2131) request. > > Might be there is some Java

Re: [android-developers] Re: How to send DHCPINFORM request

2011-11-09 Thread Oscar Marques
Try http://developer.android.com/sdk/ndk/index.html 2011/11/9 Diego Torres Milano > Not from the SDK > > On Nov 9, 12:28 am, "petr.maza...@mautilus.com" > wrote: > > Is it possible to send manually the DHCPINFORM request? I was > > searching the SDK and I did not found any class that allows cr

[android-developers] Re: Marge to listview when after one list finished

2011-11-09 Thread shashi asanka
Confuse with u'r Question, "want to load listview2 data after listview1 loaded , " did it mean after click listview1 and then load listview2 is that correct or u need to load 2 load both listviews @ once ? -- You received this message because you are subscribed to the Google Groups "Android Dev

[android-developers] Websphere Message Broker (IMMED NEED)

2011-11-09 Thread Steven Smith
Dear Business Partner, Hope you are doing well today, Please review the requirement and let me know if you have any one available for the below position, Please send me your consultant updated resume with the contact detail ASAP *Job Title: Websphere Message Broker Location: Jacksonville, Florida

Re: [android-developers] ManagedQuery for Images returns null

2011-11-09 Thread Ankur Avlani
I have set the permissions, because of which it works on 2 devices. My only concern is the code is not consistent on all devices, not sure what mistake I have done. -Ankur. On Tue, Nov 8, 2011 at 9:09 PM, Pawan Singh Rathore < pawan.s.rath...@gmail.com> wrote: > Have you set permission to acces

Re: [android-developers] Re: hyperlink using textview

2011-11-09 Thread Narendra Singh Rathore
Thnx friends, I got what I needed..Anyways once again sorry for silly question. -- 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 em

Re: [android-developers] unable to access dictionary

2011-11-09 Thread Narendra Singh Rathore
So Dev, what have u used for that...Can U plz tell in short how u applied that? -- 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 em

Re: [android-developers] Android. How to clear permission

2011-11-09 Thread Kristopher Micinski
What!? You must be entirely off track here... On Wed, Nov 9, 2011 at 11:22 AM, Ray da Costa wrote: > > Staff a help, I need to write the file ini.rc Android. Why? How to clear > permission to write and record? > tks. you need to root your phone, from the sounds of it, but this is silly, why

Re: [android-developers] Customize Android Source Code to run multiple Application on same Screen.

2011-11-09 Thread Pawan Singh Rathore
Hi Kristopher, Thanks for your valuable response. Its my first task at source level. I have also applied for membership on android-framework group, Hope gets approval. Yep, It will take months to implement because the relevance code is about 14-15k SLOC. Thanks & BR, Pawan Rathore On Wed, Nov

Re: [android-developers] QR Code Question (the sort of barcode looking thing)

2011-11-09 Thread Kanu Sayal
You can use one of the QR Code generator to build your QR Code in which you can store any of ur information.It can be ur contact info,any web URL or ur calender event..You can save any of these information in ur QR Code reader. One of the QR generator is http://zxing.appspot.com/generator/ Thanks.

Re: [android-developers] Customize Android Source Code to run multiple Application on same Screen.

2011-11-09 Thread Kristopher Micinski
You can't join android-framework because it is being closed, you can instead join android-platform, which is an open group. kris On Wed, Nov 9, 2011 at 1:12 PM, Pawan Singh Rathore wrote: > Hi Kristopher, > > Thanks for your valuable response. > Its my first task at source level. I have also app

Re: [android-developers] Re: TFTP (Trivial File Transfer Protocol) support

2011-11-09 Thread Vadym Khondar
FTP from commons-net runs well on android. I think, it won't be harder to use tftp as well. commons-net API is rather well documented. > On Nov 9, 1:41 am, "petr.maza...@mautilus.com" > wrote: >> According to my information the SDK does not support directly the >> TFTP. >> >> Are the any other

[android-developers] Re: FingerPaint eraser

2011-11-09 Thread JackN
painting with a transparent color will not erase. There a lot of ways to do it. I have a app that 'erases'. The actual strokes become a mask. so erasing is just painting the mask black On Nov 8, 7:13 am, New Developer wrote: > Hi All > > I'm trying to expand the concept of the Finger Paint  Exam

Re: [android-developers] Tests. Sending touch events to activity.

2011-11-09 Thread Yahor Paulavets
Hello, I recommend to use Robotium Solo by jayway (free lib for all UI interactions). Also there are special mailing group for QA, you can google it: robotium-developers. I have covered at least 2 additional ways how to click UI without Robotium in this conference. Also there a lot of friendly ex

Re: [android-developers] error on Installation INSTALL_PARSE_FAILED_MANIFEST_MALFORMED

2011-11-09 Thread Dianne Hackborn
Your logcat is not just that one line. There will be a line in the log giving more detail about what the error is. On Wed, Nov 9, 2011 at 1:55 AM, vitaly87 wrote: > Hello all! > I have an error on runing my app. I am getting this error: > > > Installation error: INSTALL_PARSE_FAILED_MANIFEST_MA

[android-developers] Backup App into apk

2011-11-09 Thread Michael Leung
Hi, I am wondering whether that is possible to back app into apk in code. Does anyone try to do that? -- Regards, Michael Leung http://www.itblogs.info http://www.michaelleung.info -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post

[android-developers] Re: Newly installed widgets are not runnable on Honeycomb

2011-11-09 Thread Jaeyun Noh
Thanks a lot. It helps much! Adding an activity in Androidmanifest.xml like the following can solve the problem? Then does it mean that starting this widget incurs new InfoActivity run at an initial start? .. .

Re: [android-developers] Backup App into apk

2011-11-09 Thread TreKing
On Wed, Nov 9, 2011 at 6:59 PM, Michael Leung wrote: > I am wondering whether that is possible to back app into apk in code. I am wondering whether you can clarify your question. - TreKing

Re: [android-developers] Backup App into apk

2011-11-09 Thread Melaka Atalugamage
to back up an application as a .apk file, which is already installed there are applications available in the market for free. such as; myBackup :) On 10 November 2011 09:05, TreKing wrote: > On Wed, Nov 9, 2011 at 6:59 PM, Michael Leung wrote: > >> I am wondering whether that is possible to back

Re: [android-developers] Screen orientantion and dialogs problem.

2011-11-09 Thread TreKing
On Wed, Nov 9, 2011 at 9:55 AM, ikki_fenix wrote: > My problem is how to deal with the screen orientation and > the leaked window errors that will generate if the orientation changes > when a Dialog or AlertDialog is open. > Use Activity.showDialog(int). ---

Re: [android-developers] Sending Multiple Request

2011-11-09 Thread TreKing
On Wed, Nov 9, 2011 at 6:38 AM, Jovish P wrote: > Is it possible to send multiple request to the server at the same time > and merge the response of those request ? > Yes. > If it is , which is the best way to implement it ? Async Task or > Threading ? > I'd vote for AsynctTask as its purpo

Re: [android-developers] Pro Android Games

2011-11-09 Thread TreKing
On Wed, Nov 9, 2011 at 6:30 AM, bob wrote: > Was expecting him to subclass View, the more obvious choice. Anyone know > why he chose to subclass LinearLayout? > Why is View, the rootest of the classes in the hierarchy a more obvious choice than a layout that does most of the work for you?

Re: [android-developers] Backup App into apk

2011-11-09 Thread Jim Graham
On Thu, Nov 10, 2011 at 09:11:40AM +0530, Melaka Atalugamage wrote: > to back up an application as a .apk file, which is already installed First, please find another translation program. The one you're using is not working. Seriously I'm guessing at what you MIGHT be trying to do. As to y

[android-developers] How to embed (or add) Watermark/Text to a video.

2011-11-09 Thread giles ian
Hello, I want to take a video from with in my app and *embed(or add) some text/watermark on the video*. Plz suggest me how can this be done. And also tell me which of the below method would be suitable: 1. Using Intent (android.provider.MediaStore.ACTION_VIDEO_CAPTURE) 2. Using MediaRecorder Tha

[android-developers] Android facebook query

2011-11-09 Thread yanamala siddaiah
I want to get apps from device which are using facebook sdk ... -- 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-d

Re: [android-developers] Sending Multiple Request

2011-11-09 Thread Jovish P
Thanks TreKing , yeah definitely I will try it myself and will ask questions if I am stuck ... On Thu, Nov 10, 2011 at 9:23 AM, TreKing wrote: > On Wed, Nov 9, 2011 at 6:38 AM, Jovish P wrote: > >> Is it possible to send multiple request to the server at the same time >> and m

Re: [android-developers] play swf file in android

2011-11-09 Thread s.rawat
Try installing the AIR for Android latest version on your emulator /device/ "..pain is temporary.quitting lasts forever.." On Thu, Nov 10, 2011 at 10:39 AM, Ratheesh Valamchuzhy wrote: > i am trying to play an swf file in android emulator(2.3), but it is not > playing , if any one kno

[android-developers] Re: Remote Service dose not start

2011-11-09 Thread gjs
Hi, Suggest you add several log debug statements in the activity & service and examine the console log. Regards On Nov 10, 7:17 am, Goutom wrote: > Hi > > I want to run remote background service. > I have tow button. > One will start the service and other will stop the service. > But my dose no

Re: [android-developers] How to embed (or add) Watermark/Text to a video.

2011-11-09 Thread Kristopher Micinski
do you want to do this online or offline? There aren't any kinds of intents for this, rightfully so, if you want a watermark online you'll have to capture the stream, apply the filter (or whatever), then pump it back out. If you want to do it offine you do the same thing, except you can parse the

Re: [android-developers] Application incompatible when trying to install on Galaxy 10.1

2011-11-09 Thread Jovish P
I did what you suggested , what is happening now is If I run the app in 1.6 emulator my app is getting crashed since I am using following method to check whether Telephony is available or not. hasSystemFeature() method is not there is 1.6. that is the reaon why it is crashing how to handle this

Re: [android-developers] play swf file in android

2011-11-09 Thread Ratheesh Valamchuzhy
i already install that in emulator -- 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+un

[android-developers] Re: Use the Gyroscope to improve the orientation

2011-11-09 Thread gjs
Hi, If you are moving & have a gps fix then use http://developer.android.com/reference/android/location/Location.html#getBearing() Gyroscope measure angular speed, read http://developer.android.com/reference/android/hardware/SensorEvent.html see Sensor.TYPE_GYROSCOPE: Otherwise you can just use

  1   2   >