[android-developers] Re: Android Google play -- (official/unofficial) position on external (bluetooth/usb) based sensors

2012-09-11 Thread RichardC
Does uses-feature with require=false, cover your use-case? http://developer.android.com/guide/topics/manifest/uses-feature-element.html On Tuesday, September 11, 2012 6:56:40 AM UTC+1, falcon74 wrote: Wondering if anyone has come across an official (or unofficial) statement/stand regarding

Re: [android-developers] Re: Is it possible to use MonkeyRunner from java

2012-09-11 Thread Lew
Arjun wrote: can you pla tel me the example how to use it in case if get ArrayListview view= solo.getviews(); is comming 0 i mean in this case what is the solution can u give me a example You should introduce new questions as new topics, but here goes. From a code fragment it's

[android-developers] Position the bottom bar on side?

2012-09-11 Thread limtc
Hi, I noticed that some apps in Nexus 7 - when in landscape mode - keep the bottom bar on side (as if it is still in portrait mode). How to keep the bottom bar on side so that I can increase the vertical space in landscape mode? Thanks! -- You received this message because you are

[android-developers] Re: Android Google play -- (official/unofficial) position on external (bluetooth/usb) based sensors

2012-09-11 Thread falcon74
On Tuesday, September 11, 2012 11:37:22 AM UTC+5:30, RichardC wrote: Does uses-feature with require=false, cover your use-case? http://developer.android.com/guide/topics/manifest/uses-feature-element.html Yes, android.hardware.location.gps for instance. On Tuesday, September 11, 2012

[android-developers] Re: How trigger intent to execute a specific method from a specific activity

2012-09-11 Thread Swap
I am also looking for same solution.. Thank you for information. can you please share your working code .please thank you On Sunday, 20 June 2010 05:34:19 UTC+2, Gabriel Simões wrote: Thanks, Works as expected! On 16 jun, 05:31, a2ronus a...@theipcompany.nl wrote: 1. Register a

Re: [android-developers] Unknown application a large number of SMS messages are being sent. Select OK to continue, or Cancel to stop sending

2012-09-11 Thread Mark Murphy
Replying to the group,, where this belongs. On Mon, Sep 10, 2012 at 11:03 PM, Corby Campbell corbyag...@gmail.com wrote: It's likely none of you read this thread anymore... but I tried googling setting up a server gateway to send bulk SMS, and all I could find is paid services. I am not aware

[android-developers] Save Sms in Custom Inbox

2012-09-11 Thread Ehsan Sadeghi
I have a broadcastreceiver and after receive sms, I abort the receiver so the sms doesn't go to inbox. I want to have a custom inbox in my app to users can see last 20 received sms in it. I use adapter to view inbox but only saved smss are shown and my app sms are lost. How can I handle

Re: [android-developers] Android Google play -- (official/unofficial) position on external (bluetooth/usb) based sensors

2012-09-11 Thread Mark Murphy
On Tue, Sep 11, 2012 at 1:56 AM, falcon74 banibrata.du...@gmail.com wrote: Wondering if anyone has come across an official (or unofficial) statement/stand regarding Android (SDK) and Google-Play, regarding apps using external sensors, e.g. bluetooth or USB based ones. AFAIK, Android does not

[android-developers] Need License related information...

2012-09-11 Thread Vaibhav Singh
Hi All, I am working on one messaging type application, I am using MMS application source code available at Github website ( https://github.com/android/platform_packages_apps_mms) as a base code and I am enhancing some feature in this existing source code, for this I would like to know that

[android-developers] Re: client certificate authentication for ssl/https connection

2012-09-11 Thread piyush gupta
Hi BabaSaheb, I want to do similar kind of work with my Android ICS 4.0 tablet. I want to make a Hit on a HTTP server(not on HTTPS) server , and I want the server to authenticate my device with a client Authentication certificate installed on it. The certificate must be installed on client

[android-developers] Fwd: I had android doubt please go to link and give your suggestions.

2012-09-11 Thread Siva Kumar
-- Forwarded message -- From: Siva Kumar j.sivakumar...@gmail.com Date: Tue, Sep 11, 2012 at 5:23 PM Subject: I had android doubt please go to link and give your suggestions. To: SIVA FAMILY MEMBERS siva_familymemb...@googlegroups.com, KARNATAKA SANGHA SCHOOL FRIENDS

[android-developers] Difference between teh service manager and system server!

2012-09-11 Thread s.rawat
Hi , Can some one Plz throw clear light on the difference between the system server and the service manager in the Android Framework. Thanks and Rgds, Softy -- ..pain is temporary.quitting lasts forever. My Blog http://techshek4u.blogspot.in/ -- You received this message because you

Re: [android-developers] Difference between teh service manager and system server!

2012-09-11 Thread Parthi K
never think huh On Tue, Sep 11, 2012 at 5:33 PM, s.rawat imsaurabhra...@gmail.com wrote: Hi , Can some one Plz throw clear light on the difference between the system server and the service manager in the Android Framework. Thanks and Rgds, Softy -- ..pain is temporary.quitting

[android-developers] Hardkeyboard Alt Shift cursor indicators

2012-09-11 Thread SG
Hi, This is regarding Input Method Service with Hard keyboard. Initially I used get Cursor indicators in the editor field based on Alt on/ off/ lock and Shift on/ off/ lock states on 2.3.3 SDK. Later when I executed the same piece of code on 4.0.3 SDK, I am not able to get Cursor indicators.

[android-developers] Re: print integer value in logcat.

2012-09-11 Thread pharaoh
Try this solution : (...) int age = 22; Log.d(MY_TAG, new Integer(age).toString()); (...) Segunda-feira, 10 de Setembro de 2012 13:22:47 UTC+1, mohammed Nuhail escreveu: How to print integer value in LogCat ? -- You received this message because you are subscribed to the Google Groups

[android-developers] Contact Aggregation

2012-09-11 Thread gaurav jain
I am working on Contact aggregation part of Contact provider. I am a beginner, so facing some simple problems in understanding aggregation. Can someone cite an example where raw contacts are aggregated (please don't give the description regarding the similarity of raw contacts etc). I just

[android-developers] Re: print integer value in logcat.

2012-09-11 Thread Jan Burse
Raghav Sood schrieb: Why would you use that when you have a perfectly working LogCat class? What's wrong with Log.i(value = + intName);? Raghav Sood Sent from my Galaxy Nexus Nothing wrong, except that it will not compile. I guess you would need to put: Log.i(TAG, value = +

[android-developers] Re: Question about SurfaceView and Threads

2012-09-11 Thread Edvinas Kilbauskas
Oh my gosh! Thank you! You just made my day. Now I finally understand it! :))) Thanks thanks thanks! I can't say how much I thank you my smart man :) 2012 m. rugsėjis 10 d., pirmadienis 12:03:54 UTC+3, jb rašė: Harri Sm�tt schrieb: That's not true. Android supports basic Java Threads and

Re: [android-developers] Re: print integer value in logcat.

2012-09-11 Thread Andrew Gregory
On 11 September 2012 20:44, pharaoh edelcides.goncal...@gmail.com wrote: Try this solution : (...) int age = 22; Log.d(MY_TAG, new Integer(age).toString()); (...) That's a wasted allocation when there's a static toString: Log.d(MY_TAG, Integer.toString(age)); -- Andrew -- You received

[android-developers] Problem in Android SubActivity : Facing - StackOverflowError

2012-09-11 Thread Rajan
hi, I am trying to use multiple activity into a single TabWidget, but when i moved from activity : 1 -- 2 -- 3 and again 3 -- 2 --1 (after performing this scenario two to three times) i got the error like *StackOverflowError*, please help me what can i do?? i didn't understand how can i

Re: [android-developers] About Monkey Scripting option

2012-09-11 Thread nagaraj attimani
Dear Pradeep, Can you please share your user script. On 1/4/10, pradeep gan@gmail.com wrote: Hi I would like to tell every body that it is possible to simulate a sequence of events on emulator using monkey scripting option -f . It is successful on android 2.0 sdk Regards, Pradeep

[android-developers] How Call a asynctask from a popupwindow??? plzzzzzzz help me

2012-09-11 Thread adroidanky
I want to Show a popup window from main activity class on Click of a button and popup window contains a form and a submit button...now the problem is that when i click on that submit button form data is not pass to async class... login =(Button)findViewById(R.id.login);

[android-developers] Re: How Call a asynctask from a popupwindow??? plzzzzzzz help me

2012-09-11 Thread bob
Why not pass the data to the constructor of login and store it in member variables? On Tuesday, September 11, 2012 10:41:41 AM UTC-5, adroidanky wrote: I want to Show a popup window from main activity class on Click of a button and popup window contains a form and a submit button...now

Re: [android-developers] Re: print integer value in logcat.

2012-09-11 Thread Raghav Sood
My mistake. Sorry. I was typing on a mobile, and the tag slipped my mind. Raghav Sood Sent from my Nexus 7 On Sep 11, 2012 6:26 PM, Jan Burse janbu...@fastmail.fm wrote: Raghav Sood schrieb: Why would you use that when you have a perfectly working LogCat class? What's wrong with Log.i(value

Re: [android-developers] Need License related information...

2012-09-11 Thread Raghav Sood
Ask a lawyer. Raghav Sood Sent from my Nexus 7 On Sep 11, 2012 4:48 PM, Vaibhav Singh vaibhav@gmail.com wrote: Hi All, I am working on one messaging type application, I am using MMS application source code available at Github website (

[android-developers] Re: Android Google play -- (official/unofficial) position on external (bluetooth/usb) based sensors

2012-09-11 Thread lbendlin
Our app uses GPS. We don't have uses-feature specified, but even tablets that don't have built in GPS can load it from the Play store. Now, admittedly, CM9 etc have an option to get GPS data from external receivers, so maybe that option is fooling the Play Store into thinking the device has

Re: [android-developers] Re: installation of audio in /mnt/sdcard

2012-09-11 Thread lbendlin
I think you are overengineering this. Of course the code will be re-used. Either by the user re-installing your app, or by the one or two other people that install it. On Monday, September 10, 2012 4:35:00 PM UTC-4, drstikko wrote: Ok, that is a pity, because the app would contain code that

Re: [android-developers] Re: Is it possible to use MonkeyRunner from java

2012-09-11 Thread mallikarjun gudisagar
Thanks for your reply actually i am testing testing the APK without source code. Thanks Arjun On Tue, Sep 11, 2012 at 11:39 AM, Lew lewbl...@gmail.com wrote: Arjun wrote: can you pla tel me the example how to use it in case if get ArrayListview view= solo.getviews(); is comming 0 i mean

Re: [android-developers] Re: Is it possible to use MonkeyRunner from java

2012-09-11 Thread Lew
How do you write a test without source code? Arjun wrote: Thanks for your reply actually i [sic] am testing testing the APK without source code. Lew wrote: Arjun wrote: can you pla tel me the example how to use it in case if get ArrayListview view= solo.getviews(); is comming 0 i

[android-developers] Re: print integer value in logcat.

2012-09-11 Thread Lew
pharaoh wrote: Try this solution : (...) int age = 22; Log.d(MY_TAG, new Integer(age).toString()); (...) Really? Not 'String.valueOf(age)'? Not even 'Integer.valueOf(age).toString()'? We're talking basic Java here. -- Lew -- You received this message because you are subscribed to

[android-developers] Translation and rotation matricies 2D on Canvas

2012-09-11 Thread NikDmit
Hello. Since it's very possible to apply rotation and translation to the entire canvas and Bitmap's object, I have a question, is it possible, without using OpenGL, to apply rotation and translation only for one element on the canvas? Let's say, I draw line and circle and I want to apply

[android-developers] Re: Translation and rotation matricies 2D on Canvas

2012-09-11 Thread bob
Use this to reset the canvas after drawing your one rotated/scaled/whatever object: canvas.setMatrix(new Matrix()); On Tuesday, September 11, 2012 1:18:53 PM UTC-5, NikDmit wrote: Hello. Since it's very possible to apply rotation and translation to the entire canvas and Bitmap's

Re: [android-developers] Re: print integer value in logcat.

2012-09-11 Thread bob
This way he only has to specify one parameter. On Monday, September 10, 2012 8:22:08 AM UTC-5, Raghav Sood wrote: Why would you use that when you have a perfectly working LogCat class? What's wrong with Log.i(value = + intName);? Raghav Sood Sent from my Galaxy Nexus On Sep 10,

Re: [android-developers] Re: Is it possible to use MonkeyRunner from java

2012-09-11 Thread mallikarjun gudisagar
In robotium its possible to test the Preinstalled application http://code.google.com/p/robotium/wiki/RobotiumForPreInstalledApps On Tue, Sep 11, 2012 at 11:41 PM, Lew lewbl...@gmail.com wrote: How do you write a test without source code? Arjun wrote: Thanks for your reply actually i [sic]

[android-developers] Invoking ACRA from within the application

2012-09-11 Thread Ika Balzam
Hi, Does anyone know if you can invoke ACRA from a button? i.e. click on a button will open the dialog and send the report instead of crashing the application in order to get the same result. Thanks, Ika -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Invoking ACRA from within the application

2012-09-11 Thread Ika Balzam
Hi, Does anyone know if you can invoke ACRA from a button? i.e. click on a button will open the dialog and send the report instead of crashing the application in order to get the same result. Thanks, Ika (I've sent this through the mail before, not sure if it worked - sorry if I posted it

[android-developers] Re: Translation and rotation matricies 2D on Canvas

2012-09-11 Thread NikDmit
Thank you! It works. Or, at least, I got an idea what I have to do =) -- 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] human error

2012-09-11 Thread bob
Is there an easy way to convert the errors here: android.media.MediaPlayer.OnErrorListener to human-readable strings? Thanks. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] Re: Invoking ACRA from within the application

2012-09-11 Thread bob
Throw an Exception on the button click? On Tuesday, September 11, 2012 2:08:03 PM UTC-5, Ika Balzam wrote: Hi, Does anyone know if you can invoke ACRA from a button? i.e. click on a button will open the dialog and send the report instead of crashing the application in order to get

Re: [android-developers] Re: Invoking ACRA from within the application

2012-09-11 Thread Kristopher Micinski
No, that's not going to generate the right kind of crash report. What do you want to report, if you click a button, the application has not yet crashed, what do you want to show has crashed? kris On Tue, Sep 11, 2012 at 3:40 PM, bob b...@coolfone.comze.com wrote: Throw an Exception on the

Re: [android-developers] Re: Invoking ACRA from within the application

2012-09-11 Thread Ika Balzam
Hi, I want to let the user have an option to send me a report - let's say that he have received a wrong notification in the application. I just want to use the same mechanism instead of writing a new one. And crashing the application in order to activate the acra screen seems like a bad way to

Re: [android-developers] Question about SurfaceView and Threads

2012-09-11 Thread bob
runOnUiThread? Why have I been using Handler.post this whole time? On Monday, September 10, 2012 3:41:53 AM UTC-5, Harri Smått wrote: On Sep 10, 2012 12:04 AM, Edvinas Kilbauskas edvinask...@gmail.comjavascript: wrote: I heard that android doesn't support plain old Java Threads.

Re: [android-developers] Question about SurfaceView and Threads

2012-09-11 Thread Kostya Vasilyev
Because you don't always have an Activity easily accessible? Besides: 1. public final void runOnUiThread(Runnable action) { 2. if (Thread.currentThread() != mUiThread) { 3. mHandler.post(action); 4. } else { 5. action.run(); 6.

Re: [android-developers] Re: Is it possible to use MonkeyRunner from java

2012-09-11 Thread Lew
Yes, but you still have to write source code to do so. On Tuesday, September 11, 2012 11:52:04 AM UTC-7, Arjun wrote: In robotium its possible to test the Preinstalled application http://code.google.com/p/robotium/wiki/RobotiumForPreInstalledApps On Tue, Sep 11, 2012 at 11:41 PM, Lew

Re: [android-developers] Re: print integer value in logcat.

2012-09-11 Thread Lew
That is not an advantage, and the concomitant loss of information is a disadvantage. bob wrote: This way he only has to specify one parameter. On Monday, September 10, 2012 8:22:08 AM UTC-5, Raghav Sood wrote: Why would you use that when you have a perfectly working LogCat class? What's

[android-developers] Re: print integer value in logcat.

2012-09-11 Thread Lew
jb wrote: Most simple approach: int x; System.err.println(x=+x); Will show in LogCat. Not normally, no, it won't. By default, the Android system sends stdout and stderr (System.out and System.err) output to /dev/null. http://developer.android.com/tools/debugging/debugging-log.html

[android-developers] Re: print integer value in logcat.

2012-09-11 Thread Jan Burse
Lew schrieb: That is not an advantage, and the concomitant loss of information is a disadvantage. Oh, you made it from comp.lang.java.programmer to here? Not enough troll opportunities anymore there? -- You received this message because you are subscribed to the Google Groups Android

[android-developers] ACRA analysis

2012-09-11 Thread bob
What do you guys use to analyze your ACRA crash data? Is this worth me buying a copy of MicroSoft Excel? -- 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] Re: Invoking ACRA from within the application

2012-09-11 Thread TreKing
On Tue, Sep 11, 2012 at 2:56 PM, Ika Balzam i...@net-comet.com wrote: And crashing the application in order to activate the acra screen seems like a bad way to do that.. so I wonder if I can do something like: ACRA.sendReport(); And it will send me the user logs/message and put it in the

Re: [android-developers] ACRA analysis

2012-09-11 Thread TreKing
This has nothing to do with this list. - TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago transit tracking app for Android-powered devices -- You received this message because you

Re: [android-developers] How Call a asynctask from a popupwindow??? plzzzzzzz help me

2012-09-11 Thread TreKing
On Tue, Sep 11, 2012 at 10:41 AM, adroidanky aprocks.pa...@gmail.comwrote: now the problem is that when i click on that submit button form data is not pass to async class... Why not? What does not working this line mean?

[android-developers] check if pressed within circle

2012-09-11 Thread iQue
I'm using joysticks to controls my game-characters movement and the direction he fires, and to keep these joysticks within its bound I use this code: if (touchingPoint.x (int) (steeringxMesh - 25)) { touchingPoint.x = (int) (steeringxMesh - 25); }

[android-developers] Re: check if pressed within circle

2012-09-11 Thread iQue
To clerify, the code I pasted only checks for one of my joysticks. If anything I wrote was unclear just tell me and Ill try to explain better. -- 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] How to convert screen coordination to camera's driver coordination

2012-09-11 Thread Alvin
Hi all, I'm a newbie for Android programming and I'm making a code to control the camera by using API. I'm struggling with the problem to map the screen coordination to camera's driver coordination for a long time. (Development Env: Samsung Galaxy S3 Eclipse) I'd like to implement to show

[android-developers] How to rotate the image to counter clockwise direction

2012-09-11 Thread Alvin
Hi all, I'm trying to rotate the imageView by using following function: --- private void OrientationChanged(int _prev, int _new){

Re: [android-developers] check if pressed within circle

2012-09-11 Thread Harri Smått
On Sep 12, 2012, at 1:09 AM, iQue max.nielse...@gmail.com wrote: Say the joysticks background image is 50x50, how do I make a circle in android with this size in mind, and how do i check if im pressing within it. Use distance, int dx = imgCenterX - touch.x; int dy = imgCenterY - touch.y;

[android-developers] how to use the android.bluetooth; package.??

2012-09-11 Thread redwolfgang20
-- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.com For more options, visit

Re: [android-developers] how to use the android.bluetooth; package.??

2012-09-11 Thread Kristopher Micinski
Did you not read the documentation for it? What were you looking for? kris On Tue, Sep 11, 2012 at 9:11 PM, redwolfgang20 redwolfgan...@yahoo.com wrote: -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

Re: [android-developers] How to change the Blue Line below Title in AlertDialog.

2012-09-11 Thread Shan Ul Haq
thats the point .. if i want to create my own view then i would'nt care for customizing the AlertDialog theme. i will just create my own alert dialog. I dont want to create my own view. i just want to change the blue line of the current alert dialog. If Android Platform does not provides this

[android-developers]

2012-09-11 Thread Redwolf Wolfgang
can you help me how to use the android.bluetooth package.? plsss i need help for my thesis. -- 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: check if pressed within circle

2012-09-11 Thread iQue
Den onsdagen den 12:e september 2012 kl. 00:09:46 UTC+2 skrev iQue: I'm using joysticks to controls my game-characters movement and the direction he fires, and to keep these joysticks within its bound I use this code: if (touchingPoint.x (int) (steeringxMesh - 25)) {

[android-developers] Re: check if pressed within circle

2012-09-11 Thread iQue
changed previous code to this: int imgCenterX = (int) ((initx - joystick.get_joystickBg().getWidth()/2) - 50); int imgCenterY = (int) ((inity - joystick.get_joystickBg().getHeight()/2) - 50); int dx = imgCenterX - touchingPoint.x; int dy =

[android-developers] Re: check if pressed within circle

2012-09-11 Thread iQue
changed previous code to this: int imgCenterX = (int) ((initx - joystick.get_joystickBg().getWidth()/2) - 50); int imgCenterY = (int) ((inity - joystick.get_joystickBg().getHeight()/2) - 50); int dx = imgCenterX - touchingPoint.x; int dy =

[android-developers] Re: check if pressed within circle

2012-09-11 Thread iQue
changed previous code to this: int imgCenterX = (int) ((initx - joystick.get_joystickBg(). getWidth()/2) - 13); int imgCenterY = (int) ((inity - joystick.get_joystickBg().getHeight()/2) - 13); int dx = imgCenterX - touchingPoint.x; int dy =

[android-developers] Re: check if pressed within circle

2012-09-11 Thread iQue
change the old code into this: int imgCenterX = (int) ((initx - joystick.get_joystickBg().getWidth()/2) - 50); int imgCenterY = (int) ((inity - joystick.get_joystickBg().getHeight()/2) - 50); int dx = imgCenterX - touchingPoint.x; int dy =

Re: [android-developers] Re: Is it possible to use MonkeyRunner from java

2012-09-11 Thread mallikarjun gudisagar
Yes, i used this code package com.android.comera import com.jayway.android.robotium.solo.Solo; import android.test.ActivityInstrumentationTestCase2; @SuppressWarnings(unchecked) public class Mytest extends ActivityInstrumentationTestCase2 { private static final String TARGET_PACKAGE_ID

[android-developers] Scaling WebView disables the Vertical and horizontal Scroll bar

2012-09-11 Thread ravi saini
Hi All, I tried to scale the webview using setScaleX(float) and setScaleY(flaot). It Scaled my webview beyond the viewport. To see the content beyond the viewport i need the horizontal and vertical scroll bar which not enabled when i use the setScaleX and setScaleY functions. Is there any way

[android-developers] Invitation to use Google Talk

2012-09-11 Thread Google Talk
--- You've been invited by thejaswi s to use Google Talk. If you already have a Google account, login to Gmail and accept this chat invitation: http://mail.google.com/mail/b-42b14cd1ab-07722e1f7d-3bdM4V5DJ86jQV169Nf4ef9iuSQ To

[android-developers] hi..

2012-09-11 Thread Ibrahim Sada
Hello Friends... Help me out how to create multiple tables in sqllite database ( android). Thanx 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@googlegroups.com

Re: [android-developers] hi..

2012-09-11 Thread Sanandiya Rajesh
See Attachfile, this is database adapter class file. you can use this class in your activity. DatabaseAdapter db = new DatabaseAdapter(context); than use db for insert update delete . create method in DatabaseAdapter for insert update delete. On Wed, Sep 12, 2012 at 10:37 AM, Ibrahim Sada

Re: [android-developers] Re: Invoking ACRA from within the application

2012-09-11 Thread Kevin Gaudin
Hi, ACRA related questions can be best answered on the acra-discuss group. https://groups.google.com/forum/?fromgroups=#!forum/acra-discuss Here's what you are looking for: https://code.google.com/p/acra/wiki/AdvancedUsage#Sending_reports_for_caught_exceptions_or_for_unexpected_applicat Kevin

[android-developers] Re: UncaughtExceptionHandler

2012-09-11 Thread Kevin Gaudin
Hi, This is a great answer ;-) For your information, the code which terminates the application was taken from the original android default UncaughtExceptionHandler source code. Kevin http://acra.ch On Monday, September 10, 2012 9:43:16 PM UTC+2, Lew wrote: bob wrote: Not sure if this is

Re: [android-developers] hi..

2012-09-11 Thread Ibrahim Sada
Hey sandhya... Where is DBhelper classi want to insert that values from the code itself... Thanx for helping On 12 September 2012 10:44, Sanandiya Rajesh sanandiya.rajes...@gmail.comwrote: See Attachfile, this is database adapter class file. you can use this class in your activity.

[android-developers] Android Build

2012-09-11 Thread Prabagaran Thangavel
Hi all, I have a doubt. Android version from GB requires 64 bit machine to build. But the target board(eg.. pandaboard) is 32 bit. My host is also 32 bit machine. Then why it requires 64 bit machine for building. Someone provide me the pointers. Thanks and Regards, Prabagaran. -- You