[android-developers] Re: Javascript openDatabase callback never executes

2012-01-31 Thread Martin
Hi and thanks for both replies. I have set a database path and on a rooted device verified that all is working as intended. Shame the callback is not supported on the older versions of Android - i shall have to think up a workaround in the javascript. Martin. On Jan 30, 8:48 pm, John Purcell

[android-developers] Re: Layout supporting word wrap for Views?

2012-01-31 Thread Zsolt Vasvari
Here's mine, it maybe a bit more full featured. It also supports centering the views vertically on each line: package your.package.here; import java.util.ArrayList; import java.util.Collection; import java.util.List; import android.content.Context; import android.content.res.TypedArray;

Re: [android-developers] Unpublish application

2012-01-31 Thread Mark Carter
It's worth mentioning that even after you unpublish an app, users can still leave comments and ratings. -- 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

[android-developers] hey all

2012-01-31 Thread Omollo Ateng
i want to monitor another phone number's location, which listeners should i use? -- Be good to not only people but also machines -- 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] PreferenceActivity, configuration screen and back button

2012-01-31 Thread arnouf
hello all, i've got widget using a Preference activity (Honeycomb). When I try to add the widget on my home, the configure screen is display. I implement the new mechanism for Honeycomb described at : http://developer.android.com/guide/topics/appwidgets/index.html#Configuring I found some

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

2012-01-31 Thread Muhammad UMER
Date: Mon, 30 Jan 2012 23:01:31 -0800 Subject: [android-developers] Re: Encoder??? From: psk...@gmail.com To: android-developers@googlegroups.com On Jan 31, 7:31 am, Muhammad UMER muhammad.ume...@hotmail.com wrote: What can i do, to start mdat from offset 0x20? your server

[android-developers] How to Check Or Enable GPRS Programatically

2012-01-31 Thread Dhaval Varia
*I am having application where i compulsory need GPRS (Not Wifi) ON. Is there any way to check wether GPRS is ON? and if it is OFF ,Is there any way to make it turn on without/With user interaction * -- Thanks Best Regards.

[android-developers] WebView using Assets

2012-01-31 Thread atcal
I'd like to use html (with images, btw) to provide documentation for my app. I thought to store my documentation pages in assets and use webview but I cannot find a way to link the webview to the assets. Does anyone know if this is possible? -- You received this message because you are

[android-developers] c2dn on simulator ?

2012-01-31 Thread Jags
hi all, I am asked to do a c2dm feasibility, can I do it in simulator ? is there any beginner tutorial for c2dm ? regards -- 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: WebView using Assets

2012-01-31 Thread arnouf
You have to use loadData applied on webview and you can retrieve your assets using getAssetManager -- 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

[android-developers] Re: Unpublish application

2012-01-31 Thread Daniel Kubovsky
Thanks for the info. Would all the description on the application, pictures, analitics and so on is gone when unpublishing? -- 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] Better UI Designing

2012-01-31 Thread Brad Stintson
Hey all, How do I design better UI for my android application? Are there any software or tutorials available which would help in refining the UIs? I am looking for some help or some software or tutorials for designing a better UI for Android 2.1+. Something that would make my task easier. As for

[android-developers] Re: WebView problem with youtube video

2012-01-31 Thread John Purcell
In general, the loading of the URL should come last (right now you've got plugins and Javascript enabled messages being sent to the webcore after you send a url request). Is this on Honeycomb or ICS? (I'm guessing ICS due to the 'normal' errors you posted above). Keep in mind that video needs

Re: [android-developers] WebView using Assets

2012-01-31 Thread Mark Murphy
On Tue, Jan 31, 2012 at 5:31 AM, atcal alan.williams...@ya.com wrote: I'd like to use html (with images, btw) to provide documentation for my app. I thought to store my documentation pages in assets and use webview but I cannot find a way to link the webview to the assets. Does anyone know if

Re: [android-developers] Browsing CTS code online

2012-01-31 Thread Mark Murphy
On Tue, Jan 31, 2012 at 12:27 AM, anup Jaipurkar androida...@gmail.com wrote: Can I browse android CTS code online. Please provide the URL. No, AFAIK, but it is a simple ZIP download: http://source.android.com/compatibility/downloads.html -- Mark Murphy (a Commons Guy) http://commonsware.com

[android-developers] how to integrate sharepoint website with android client application

2012-01-31 Thread basant mohamed
Dear all i need a help please I have a sharepoint website and the task is to make an android client application to integrate with this website , this application will just view the content of the website and add comment feedback. i don't know what is the steps to do this task ,i just want steps

[android-developers] Horizontal swipe three images at a time in honeycomb

2012-01-31 Thread Yogeshkumar Tiwari
Hi All, I am developing a speech therapy apps for Android 3.2, in that i have to swipe three images at a time and all the three images are clickable, when we click on any of the image corresponding sound should come. so please if any one have this answer please help me. Thanks in

Re: [android-developers] Re: Unpublish application

2012-01-31 Thread TreKing
On Tue, Jan 31, 2012 at 5:01 AM, Daniel Kubovsky kubovs...@gmail.comwrote: Would all the description on the application, pictures, analitics and so on is gone when unpublishing? Did you read my first response? would all the descriptions, pictures and so on regarding the application is gone

[android-developers] Re: How I use Web Services in android.?

2012-01-31 Thread Harpreet Singh
Hello, I am just stuck to a thing. I am using a soap service with method called LoadForm. I am sending as request serviceId(int) and it is responding me with ResponseForm(string) and that is an entire html code of the online form. How should I use it to built an activity i.e. to show that form

Re: [android-developers] Re: How to test Activity, which is run in the separate process (android.process=:process in the manifest file)

2012-01-31 Thread Yahor Paulavets
Anyone? On Thu, Jan 19, 2012 at 12:50 PM, Yahor Paulavets ypaulav...@agilefusion.com wrote: Hello, Thanks for the replies! Just out of interest, what do you mean by 'test?' - I mean GUI Robotium test - ActivityInstrumentationTestCase2 etc. Which should be run from the shell ot the CI

Re: [android-developers] Re: How to test Activity, which is run in the separate process (android.process=:process in the manifest file)

2012-01-31 Thread Yahor Paulavets
I have shared a lot of knowledges, how to interact with android device using shell: http://softteco.blogspot.com/2011/03/android-low-level-shell-click-on-screen.html And answering to every questions, guys have. I'm so disappointed that there are nobody to help ME to solve MY problem :((( Very

[android-developers] Re: How I use Web Services in android.?

2012-01-31 Thread Harpreet Singh
Any example/ sample you have for :: If I develop my own xml_layouts of forms and save them to server, so then how I'll use them to get as response and then show them as activity in app? Please help if you have any idea. Or Can tell any other way to use a form coming as response, to use it as

[android-developers] how to use AsyncTask

2012-01-31 Thread aashutosh
Hello, How can i use Asynctask for the following code: public static String getXML() { String line = null; DefaultHttpClient httpClient = new DefaultHttpClient(); HttpPost httpPost = new

Re: [android-developers] Re: How to test Activity, which is run in the separate process (android.process=:process in the manifest file)

2012-01-31 Thread Mark Murphy
On Tue, Jan 31, 2012 at 8:18 AM, Yahor Paulavets ypaulav...@agilefusion.com wrote: I have shared a lot of knowledges, how to interact with android device using shell: http://softteco.blogspot.com/2011/03/android-low-level-shell-click-on-screen.html And answering to every questions, guys have.

[android-developers] Edittext Scrolling

2012-01-31 Thread aru padam
Hi all, I am creating an app. It contain an edit text inside a scroll view. The edit text support multiple lines.My problem is that i can't make edit text scrollable.In the same screen there is a list view, it is scrollable.How i can possible to scroll through the edit text.Please help me.

[android-developers] Home screed Widget crash

2012-01-31 Thread Farhan Tariq
Hello guys, I am working on an homescreen widget app that shows images downloaded from the internet. The flow is widget starts a service and the service runs a thread every 15 seconds. The thread downloads image and shows it on the homescreen. The issue is that after showing the images 4 to 6

Re: [android-developers] Re: How to test Activity, which is run in the separate process (android.process=:process in the manifest file)

2012-01-31 Thread Yahor Paulavets
Hello, It is not my app, it is app I have to test. And it is not testable, because it has :separate processes. I wonder to know, is there are any way to test such processes? Or how can I submit a bug/ask google/whatever to get the answer or direction.. Best regards, Yahor On Tue, Jan 31, 2012

Re: [android-developers] Re: How to test Activity, which is run in the separate process (android.process=:process in the manifest file)

2012-01-31 Thread Yahor Paulavets
update: if I remove :process separate process definition in the manifest file, application crashes and there are no way to run it without separate process definition. Best regards, Yahor On Tue, Jan 31, 2012 at 4:36 PM, Yahor Paulavets ypaulav...@agilefusion.com wrote: Hello, It is not my

Re: [android-developers] Re: How to test Activity, which is run in the separate process (android.process=:process in the manifest file)

2012-01-31 Thread Mark Murphy
On Tue, Jan 31, 2012 at 8:36 AM, Yahor Paulavets ypaulav...@agilefusion.com wrote: It is not my app, it is app I have to test. And it is not testable, because it has :separate processes. Ah, my apologies. Please direct my rants to the developers, who should have their heads examined. I wonder

[android-developers] This is my first application

2012-01-31 Thread Salih Selametoglu
Hello friends, it is my first application. http://selametoglu.blogspot.com/2012/01/light-show-android-uygulamas.html ( translate english google: http://translate.google.com.tr/translate?hl=trsl=trtl=enu=http%3A%2F%2Fselametoglu.blogspot.com%2F2012%2F01%2Flight-show-android-uygulamas.html ) if

[android-developers] Resume activity while download

2012-01-31 Thread ColletJb
Hi, I'm currently working on an app where the user can start a download of a big file (in an activity called FileDetailsActivity). I can properly start, cancel, restart and handle the download, everything works fine. But, I'm looking for a way to implement this use-case: * the user goes back to

[android-developers] nullpointer on getPreferenceManager() in sdk 13 and up

2012-01-31 Thread Dirk Vranckaert
I'm trying to implement a fragemented preferences activity. This is only the first part of my activity where it already fails: public class PreferencesICSActivity extends PreferenceActivity { @Override protected void onCreate(Bundle savedInstanceState) {

Re: [android-developers] nullpointer on getPreferenceManager() in sdk 13 and up

2012-01-31 Thread Mark Murphy
getPreferenceManager() looks like it will return null if you are using preference headers. My guess is that you are supposed to use the PreferenceManager from your PreferenceFragments. On Tue, Jan 31, 2012 at 9:22 AM, Dirk Vranckaert dirkvrancka...@gmail.com wrote: I'm trying to implement a

[android-developers] ExpandableListView How to get bitmap of each item separately

2012-01-31 Thread Mansoor
Hi, I am trying expand/collapse animation in expandable listview but i am stuck :( i have two group each with some dynamic number of items. so when first group expands, second group slides down (along with its child items) smoothly and displays first group child items with some alpha animation.

[android-developers] In-App Billing Tracking By Android Market

2012-01-31 Thread beachboy
If I provide the traditional lite/paid versions that can exist in the market prior to In-App billing and then I change the Lite version to support In-App billing and unlock features to make it now the same as the paid version, then how does the market know that I have unlocked these features and

Re: [android-developers] VideoView and buffering

2012-01-31 Thread John-Marc Desmarais
Hi, I'm using the reset() now. There's a little bump in the playback every time it reaches the end of the content that existed in the file when it was initially loaded which I don't like but I'm using prepareAsync so I think this hiccup is as small as I can make it with a single VideoView.

Re: [android-developers] ExpandableListView How to get bitmap of each item separately

2012-01-31 Thread TreKing
On Tue, Jan 31, 2012 at 8:41 AM, Mansoor musafir4frie...@gmail.com wrote: I tried following and got first group bitmap : View mView = mExpandableListView.getChildAt(0); but how to get bitmap for particular group /child generically ? Well, if getChildAt(0) get your the first one, replace 0

Re: [android-developers] In-App Billing Tracking By Android Market

2012-01-31 Thread TreKing
On Tue, Jan 31, 2012 at 8:49 AM, beachboy jfma...@gmail.com wrote: how does the market know that I have unlocked these features and that the Lite version is really now the Paid version? It doesn't - *your app* would check if the user bought the unlock item and react accordingly.

Re: [android-developers] Resume activity while download

2012-01-31 Thread TreKing
On Tue, Jan 31, 2012 at 8:01 AM, ColletJb collet...@gmail.com wrote: Can anyone help me with this ? Instead of background thread you probably want a background service, to which you bind and unbind as your details activity comes and goes. So the download logic and state is stored in the

Re: [android-developers] Better UI Designing

2012-01-31 Thread TreKing
On Tue, Jan 31, 2012 at 5:18 AM, Brad Stintson geek.bin...@gmail.comwrote: How do I design better UI for my android application? Are there any software or tutorials available which would help in refining the UIs? http://developer.android.com/design/index.html

[android-developers] Re: Resume activity while download

2012-01-31 Thread ColletJb
With my current implementation, I use AsyncTask. It supports progress updates and many other things. How could I handle the progress updates with a separated service ? With AIDL ? Thanks for your help On 31 jan, 15:59, TreKing treking...@gmail.com wrote: On Tue, Jan 31, 2012 at 8:01 AM,

[android-developers] MediaRecorder.start() hangs on Galaxy S2

2012-01-31 Thread Juanillo
Hi, I'm trying to develop a call recording app. This is the code to start recording: code try { MediaRecorder callRecorder = new MediaRecorder(); callRecorder.setAudioSource(AudioSource.VOICE_CALL); callRecorder.setOutputFormat(MediaRecorder.OutputFormat.RAW_AMR);

Re: [android-developers] Re: Resume activity while download

2012-01-31 Thread TreKing
On Tue, Jan 31, 2012 at 9:10 AM, ColletJb collet...@gmail.com wrote: How could I handle the progress updates with a separated service ? With AIDL ? Check the Service documentation page. There is a LocalService example.

[android-developers] how to integrate sharepoint website with android client application

2012-01-31 Thread basant mohamed
Dear all i need a help please I have a sharepoint website and the task is to make an android client application to integrate with this website , this application will just view the content of the website and add comment feedback. i don't know what is the steps to do this task ,i just want steps

[android-developers] Re: Add Native Support not found in Eclipse

2012-01-31 Thread Alex Cohn
On Jan 11, 12:25 am, John-Marc Desmarais j...@ieee.org wrote: Hi, Thanks for your help. I installed Sequoya and MTJ but, I still have no AddNativeSupport under Android Tools. I have also tried installing android-ndk-r6b and having C:\android\android-ndk-r6b in the path. But, currently, I

[android-developers] Re: lockNow() API throws error on a few LG phones

2012-01-31 Thread Priyank
anyone? On Jan 30, 3:55 pm, Priyank priyankvma...@gmail.com wrote: Hi, I am trying to use the lockNow() method from the DevicePolicyManager. It works fine for most of the phones I have tested. But on a couple of LG phones, the method is throwing a null pointer exception. The LG phones I am

Re: [android-developers] VideoView and buffering

2012-01-31 Thread Daniel Drozdzewski
John-Marc, I am glad that it works. I am not sure whether prepareAsync would be quicker than blocking prepare call. I mean that whatever the system implementation of the player, preparing it takes the same amount of time and async call simply does not block, but if you call play as a next

Re: [android-developers] Edittext Scrolling

2012-01-31 Thread TreKing
On Tue, Jan 31, 2012 at 7:27 AM, aru padam deepesh...@gmail.com wrote: How i can possible to scroll through the edit text. Try setting the maxlines property. Or show your layout. - TreKing

[android-developers] Re: Edittext Scrolling

2012-01-31 Thread dmon
Hmm I'm not 100% clear, but I think that you will get the behavior that you want if you extend the EditText class and override the onTouchEvent() method: public boolean onTouchEvent(MotionEvent ev) { boolean canScroll = !this.isFocusable() || !this.isEnabled() ||

Re: [android-developers] VideoView and buffering

2012-01-31 Thread John-Marc Desmarais
Daniel, It is my feeling that since the swap is being done in the onCompletion handler, there would be a gap in playback in either case. If prepare is the time consuming part of Prepare(), Start(), Seekto().. then I can see this shrinking the gap. But, if there is a detectable delay, then the

[android-developers] re:eclipse plugin phonegap

2012-01-31 Thread Jagadeesh
Hi iam working android project my apps targeting cross platform like blackberry,iphone where can i get phoneGap plugin for eclipse ganymade can any one share the link might useful very urgent -- You received this message because you are subscribed to the Google Groups Android Developers group.

[android-developers] still having problems with gridview and spacing.

2012-01-31 Thread John Davis
Hello I am still having a problem with gridview and spacing. Would love to talk to someone regarding the issue. I've considered chaning text orientation for column headings or using two line text. Here is more info including screenshots:

[android-developers] Re: eclipse plugin phonegap

2012-01-31 Thread Glen Cook
You can do it here: http://docs.phonegap.com/en/1.4.0/guide_getting-started_android_index.md.html#Getting%20Started%20with%20Android I set it up today. It is very easy to get started. They have their own Google group here: http://groups.google.com/group/phonegap Cheers, Glen On Jan 31, 4:58 

[android-developers] Re: eclipse plugin phonegap

2012-01-31 Thread bsquared
I think the phonegap download includes an eclipse plugin. On Jan 31, 8:58 am, Jagadeesh mjagadeeshb...@gmail.com wrote: Hi iam working android project my apps targeting cross platform like blackberry,iphone where can i get phoneGap plugin for eclipse ganymade can any one share the link might

[android-developers] Re: clearAnimation() Causes onAnimationEnd to fire Twice?? Please Help

2012-01-31 Thread Brady
Hi, I saw this problem as well. To workaround it I created a boolean flag in my anonymous instance of AnimationListener so that it only happens once. animSet.setAnimationListener(new AnimationListener() { private boolean ended = false;

[android-developers] Re: clearAnimation() Causes onAnimationEnd to fire Twice?? Please Help

2012-01-31 Thread Brady
Hi, I saw this problem as well. To workaround it I created a boolean flag in my anonymous instance of AnimationListener so that it only happens once. animSet.setAnimationListener(new AnimationListener() { private boolean ended = false;

[android-developers] Quick question about Quick Actions

2012-01-31 Thread gnugu
Hi, I don't see Quick Actions metaphor over at Android Design guide ( http://developer.android.com/design/index.html). Is that metaphor not being endorsed? Has it been de-favoured in favour of Multi-panel Layouts, Swipe Views and Action Bar? So instead of having Quick Actions on item in a list

[android-developers] Re: WebView problem with youtube video

2012-01-31 Thread drenda
Hi John, thanks for your replay. I'm usign Honeycomb on a tablet. Unfortunally the order of the loading url don't resolve the problem. I'm try with this code: setContentView(R.layout.video); final WebView webView = (WebView) findViewById(R.id.video_webview);

Re: [android-developers] Quick question about Quick Actions

2012-01-31 Thread Mark Murphy
I can tell you that the Contacts app no longer uses the Android 2.x-style quick actions balloon. Tapping a contact photo now brings up a dialog that contains all the stuff the quick actions balloon used to, but it looks substantially different. On Tue, Jan 31, 2012 at 3:00 PM, gnugu

[android-developers] Re: Simulating Mouse Click

2012-01-31 Thread Dritan
Thank you for your reply Kris. I am trying to create a low-level mapping where some button press on my 22-button device is to be seen as left click, by following this configuration: http://source.android.com/tech/input/key-layout-files.html I know Android is a flexible system and without rooting

Re: [android-developers] Quick question about Quick Actions

2012-01-31 Thread gnugu
I noticed that too. I guess, they are going away from Quick Actions. Thanks Mark. -- 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

Re: [android-developers] Re: Simulating Mouse Click

2012-01-31 Thread Kristopher Micinski
On Tue, Jan 31, 2012 at 4:01 PM, Dritan djdea...@gmail.com wrote: Thank you for your reply Kris. I am trying to create a low-level mapping where some button press on my 22-button device is to be seen as left click, by following this configuration:

[android-developers] Re: Home screed Widget crash

2012-01-31 Thread String
The failed binder transaction issue basically happens whenever you send data too fast to an AppWidget, where too fast is loosely defined. You can definitely cause it by sending 1MB at once, but you can also get it by sending much smaller quantities at too fast a rate. Which is what it sounds

Re: [android-developers] Re: Simulating Mouse Click

2012-01-31 Thread Mark Murphy
On Tue, Jan 31, 2012 at 4:01 PM, Dritan djdea...@gmail.com wrote: I am trying to create a low-level mapping where some button press on my 22-button device is to be seen as left click, by following this configuration: http://source.android.com/tech/input/key-layout-files.html I know Android is

[android-developers] Re: EditText in ListView footer not visible when the soft keyboard is present

2012-01-31 Thread ivan
The problem is that the list activity is contained in a tab activity that needs to set to adjustPan. When I make the tab activity adjustResize too, everything works as expected. I'm guessing I'll need to work some magic in code. Does anyone have an suggestions on where to start? Thanks. On Jan

[android-developers] Re: Automatic word wrap for views?

2012-01-31 Thread String
Won't a GridView do that? String -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

[android-developers] Re: WebView using Assets

2012-01-31 Thread atcal
Thanks. It was the form of URL I was missing. On Jan 31, 1:19 pm, Mark Murphy mmur...@commonsware.com wrote: On Tue, Jan 31, 2012 at 5:31 AM, atcal alan.williams...@ya.com wrote: I'd like to use html (with images, btw) to provide documentation for my app. I thought to store my documentation

Re: [android-developers] Re: NFC Secure Element

2012-01-31 Thread malls
Fernando, In that case, what's api to send apdu to external SE and how can we have external SE added to the phone. regards malls -- 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] AR.Drone compilation for Android

2012-01-31 Thread Damien Cooke
All, Has anyone got the ARDrone API 1.8 example code and ARDroneLib compiled on a recent version of Android NDK? I would love some direction I have wasted so much time it is not funny. Damien -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Re: In-App Billing Tracking By Android Market

2012-01-31 Thread beachboy
I assume then that during an uninstall and reinstall of the Lite version that my app will have to check the market to see if the user had previously purchased the advanced capabilities and then unlock those during the install. It still seems like the user is misinformed as to which version of the

Re: [android-developers] Re: NFC Secure Element

2012-01-31 Thread malls
Fernando, I was wondering if I can emulate the card in my application and send it to the terminal. regards malls -- 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: Strange behavior with Theme.DeviceDefault.Light

2012-01-31 Thread Ricardo Amaral
Just to let everyone who stumbles upon this that I had the confirmation from Adam Powel that this was a bug that slipped through, it has been fixed for the next update. Problem resolved :) -- You received this message because you are subscribed to the Google Groups Android Developers group. To

[android-developers] Need architecture guidance in reference to a social app

2012-01-31 Thread leftcont...@gmail.com
i need to know how an actual developer might solve this problem . I have the app on my device and so do you. In the app i write a message and this message is passed to your app . You open and your app are notified a new message awaits. The action you take in reference to this message generates a

Re: [android-developers] Re: In-App Billing Tracking By Android Market

2012-01-31 Thread TreKing
On Tue, Jan 31, 2012 at 5:49 PM, beachboy jfma...@gmail.com wrote: I assume then that during an uninstall and reinstall of the Lite version that my app will have to check the market to see if the user had previously purchased the advanced capabilities Right. and then unlock those during

Re: [android-developers] Re: How to test Activity, which is run in the separate process (android.process=:process in the manifest file)

2012-01-31 Thread Yahor Paulavets
Hello, Sarcasm is not necessary. Just try to imagine, that devs have changed a very big application's design a bit to use separate processes and as a result you have lost almost 4 human years of work. All UI tests. And all Continious Integration servers became useless, because there are no tests

Re: [android-developers] Need architecture guidance in reference to a social app

2012-01-31 Thread James Black
Why not just send an SMS message, and look for a particular beginning to a message, perhaps. You can read this blog to see how to read messages: http://droidcoders.blogspot.com/2011/09/sms-receive.html On Tue, Jan 31, 2012 at 8:20 PM, leftcont...@gmail.com leftcont...@gmail.com wrote: i need

Re: [android-developers] AR.Drone compilation for Android

2012-01-31 Thread TreKing
On Tue, Jan 31, 2012 at 5:04 PM, Damien Cooke cooke.dam...@gmail.comwrote: Has anyone got the ARDrone API 1.8 example code and ARDroneLib compiled on a recent version of Android NDK? I would love some direction I have wasted so much time it is not funny. There is a separate list for NDK

Re: [android-developers] c2dn on simulator ?

2012-01-31 Thread TreKing
On Tue, Jan 31, 2012 at 4:48 AM, Jags jag...@gmail.com wrote: is there any beginner tutorial for c2dm ? http://tinyurl.com/7egymyf - TreKing http://sites.google.com/site/rezmobileapps/treking -

Re: [android-developers] Need architecture guidance in reference to a social app

2012-01-31 Thread Kristopher Micinski
Question: How do i handle the exchange between the two devices. Am i going to need a server to accomplish this? The basic answer is: yes. You *do* need a server to accomplish this. Having a backend solution is probably the most feasible path, and it's done the majority of the time. There are

[android-developers] Re: Simulating Mouse Click

2012-01-31 Thread Dritan
OK so first things first, yes I was kind of angry/upset because it seemed like I had tried all possible routes and have no solution. I apologize if my threat to re-post this question every week (lol) came off too strong. But honestly, I've been at this for nearly a month where I bought a

[android-developers] Remote administration in Android

2012-01-31 Thread chander
Hi all, I am having a scenario like i have a procedure in my application for encrypting files and i have to call or initiate the procedure from a Remote server, so in a generic way i want to do Remote administration in Android, can someone please give me an idea about it, how it can be done in

[android-developers] alarm vs. service

2012-01-31 Thread Anuj Goyal
I think I know the answer, but will this alarm continue to repeat if the phone is rebooted? If not, should I use a Service instead? I want to use the alarm to send out a Notification every few hours. // AlarmActivity.java public class AlarmActivityAlarmController extends Activity { Toast

[android-developers] Re: In-App Billing Tracking By Android Market

2012-01-31 Thread Mark Carter
The preferred route would be to convert the paid app to use in-app billing and make it free. But this can only be done once the suggestion here has been implemented: http://code.google.com/p/marketbilling/issues/detail?id=17#c7 Then you could ditch the free version altogether. However, please

Re: [android-developers] alarm vs. service

2012-01-31 Thread Kristopher Micinski
Can you register your app to receive the on boot broadcast and then start the alarm manager there? kris On Wed, Feb 1, 2012 at 12:52 AM, Anuj Goyal anuj.go...@gmail.com wrote: I think I know the answer, but will this alarm continue to repeat if the phone is rebooted? If not, should I use a

Re: [android-developers] Re: ListView item into ListView

2012-01-31 Thread Narendra Singh Rathore
On Tue, Jan 31, 2012 at 1:46 AM, fala70 fal...@gmail.com wrote: then ? what is the best solution to use a list variable items into an item listview ? Hey, what about ExpandableListView? Try that, may be helpful for you. With Regards, NSR -- You received this message because you are

Re: [android-developers] Re: ListView item into ListView

2012-01-31 Thread Narendra Singh Rathore
On Tue, Jan 31, 2012 at 1:46 AM, fala70 fal...@gmail.com wrote: then ? what is the best solution to use a list variable items into an item listview ? Hey, What about ExpandableListView? Try that, may be helpful for you. -- You received this message because you are subscribed to the Google

Re: [android-developers] Re: In-App Billing Tracking By Android Market

2012-01-31 Thread Nikolay Elenkov
On Wed, Feb 1, 2012 at 2:56 PM, Mark Carter mjc1...@googlemail.com wrote: However, please note that non-paid app countries (e.g. China and Taiwan) cannot see free apps that use in-app billing. Which kind of defeats the purpose of trying to have a single app. If you try to use IAB, you will get

[android-developers] Re: In-App Billing Tracking By Android Market

2012-01-31 Thread Zsolt Vasvari
Which kind of defeats the purpose of trying to have a single app. If you try to use IAB, you will get an error if it's not available, so why block the app from the Market? I guess they are just checking for the BILLING permission to filter, but still, why not let people use the free app.

[android-developers] Re: ExpandableListView How to get bitmap of each item separately

2012-01-31 Thread Mansoor
Hi Treking Thanks for your reply :) I am facing one issue even for getting bitmap of first group item. My group item layout/UI changes in expand and collapse state . If i get drawing cache in expand state i am getting bitmap correspond to collapse state ... How to get latest bitmap of

Re: [android-developers] alarm vs. service

2012-01-31 Thread Anuj Goyal
I could do that, but most material on the net seems to prefer using a Service. I have yet to see a webpage that nicely details the performance implications of using an Alarm vs. a Service. Even a short list of pros/cons for each class would be useful to me to understand the philosophy behind