[android-developers] Use 3G and WIFI simultaneously

2010-10-01 Thread Kristian
it is possible to use both simultaneously, so I am wondering if anyone has any tips on how to enable it/force both interfaces to remain active? We are currently working on a Nexus One. Thanks in advance, Kristian -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Using 3G and WLAN simultaneously

2010-10-01 Thread Kristian
. The phones I have tested with are the Galaxy S and Nexus One, and the application is currently written in native code (however, it can easily be ported to Java if that is neccessary). Thanks in advance for any help. -Kristian -- You received this message because you are subscribed to the Google Groups

[android-developers] Re: Segmented video streaming on Android

2010-10-28 Thread Kristian
. A possible solution would be to feed the raw h264 bytestream to the media-framework (if possible) and send the frames back up to the GUI through JNI. Btw, do you have any or know of any examples of how to use Stagefright/ Opencore? -Kristian On Oct 27, 9:01 pm, Dana L dana11...@gmail.com wrote

[android-developers] Re: Segmented video streaming on Android

2010-10-29 Thread Kristian
Yes, I agree. Perhaps it is better to see what Gingerbread has to offer before trying to create some platform-dependent native-code solution. Hopefully, the fact that iOS support Live Streaming will server as an extra motivation to add it to Android as well. -Kristian On Oct 29, 8:47 pm, Dana L

[android-developers] Re: Can Android 2.X connect to 3G and Wifi data networks simultaneously?

2010-10-30 Thread Kristian
the 3G-connection, adding the route and using it. However, the interface is disable after 60s no matter if there is activity on it or not. Does anyone know how to increase the timeout value or remove it altogether? My phone is running 2.2 -Kristian -- You received this message because you

[android-developers] Re: TCP problem - hangs when reading server's response

2010-11-14 Thread Kristian
the server application to include for example \n at the end of the packet (just for testing)? -Kristian -- 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] Re: help in getting python working

2010-11-15 Thread Kristian
Hi, I think Python for android either requires you to use the ASE or run it from the terminal. Try to use adb to connect to your phone, type python and see what happens. If it works, you should enter the interactive shell. -Kristian -- You received this message because you are subscribed

[android-developers] Re: help in getting python working

2010-11-29 Thread Kristian
On Nov 16, 6:09 am, Salil sali...@gmail.com wrote: Thanks Kristian    I am sorry to say that I am not very familiar with the android terminologies and the mechanism[s] with which it works. Could you please let me know how to work with ASE. I don't think it would be a good idea to use adb

[android-developers] IllegalState when creating interface with Android 4.0's VpnService.Builder

2011-11-30 Thread Kristian
17:51:10.875: W/System.err(2741): at android.net.VpnService $Builder.establish(VpnService.java:472) 11-30 17:51:10.875: W/System.err(2741): at no.simtel.TestVpnService $TestVpn.run(TestVpnService.java:37) Thanks in advance for any help. /Kristian -- You received

[android-developers] Re: IllegalState when creating interface with Android 4.0's VpnService.Builder

2011-12-01 Thread Kristian
the insmod myself and ran the application, it all worked perfectly. -Kristian -- 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

[android-developers] Test Android 3.1 on Nexus S

2011-07-19 Thread Kristian
I have a Nexus S phone and I have a need to test new functionality in Android 3.1 SDK on a phone. Is there any official 3.1 image for Nexus S available since this is the Android Dev Phone, or do I have to go for a custom ROM found somewhere on the forums? Thanks for any help! /Kristian -- You

[android-developers] Pixel C Windows ADB Driver

2016-05-09 Thread Kristian Gleeson
Debugging on Pixel C constantly crashing so tried to reinstall Google ADB driver. Pixel C not recognised/supported. Have tried editing the drivers .INF files (see accepted answer ) but this then

[android-developers] Button and onClickListner help needed

2011-04-04 Thread Karl Kristian Markman
button codes that are out there. Pleas help me Regards Karl Kristian Norway -- 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

[android-developers] Converting LAt Long to UTM

2012-10-09 Thread Karl Kristian Markman
Hi I am currently in the process with making an app that shall show the loaction retrived from the GPS sensor and displying the position in UTM format (WGS83 datum). Is there a way to get the location info from the GPS as UTM? -- You received this message because you are subscribed to the

[android-developers] Re: Converting LAt Long to UTM

2012-10-09 Thread Karl Kristian Markman
/utmformulas.htm On Tuesday, October 9, 2012 2:17:12 PM UTC+2, Rudolf Hornig wrote: No. Location is provides as lat/lon in WGS84. You have to convert that to UTM. On Tuesday, October 9, 2012 12:40:16 PM UTC+2, Karl Kristian Markman wrote: Hi I am currently in the process with making an app

[android-developers] Re: Converting LAt Long to UTM

2012-10-10 Thread Karl Kristian Markman
Can someone pleas tell me how to get numbers in power ? Like this (syntax used in Excel): 45^(3/2) ? On Tuesday, October 9, 2012 9:16:20 PM UTC+2, Karl Kristian Markman wrote: I figured as much. I hav found the forumla but Im not sure how to use the formula in code. I mean do I just put

[android-developers] Re: Converting LAt Long to UTM

2012-10-11 Thread Karl Kristian Markman
(Math.cos(lat),2)); double UTMni = (Ki+Kii*Math.pow(pii, 2)+ Kiii * Math.pow(pii,4)); double UTMei = 50 + (Kiv*pii + Kv * Math.pow(pii, 3)); UTMn = (int) UTMni; UTMe = (int) UTMei; } [/code] On Thursday, October 11, 2012 2:12:50 AM UTC+2, Lew wrote: Karl Kristian Markman wrote: I figured

[android-developers] Re: Converting LAt Long to UTM

2012-10-12 Thread Karl Kristian Markman
On Thursday, October 11, 2012 7:53:22 PM UTC+2, Lew wrote: Karl Kristian Markman wrote: So here is the code I use to transform the Lat long to UTM ( in case anyone else wouders..) [code] public void convert (){ double a = 6378137; Strictly speaking, you should

[android-developers] Re: Converting LAt Long to UTM

2012-10-12 Thread Karl Kristian Markman
Lew is this more what you are looking for?? Also I have a link to the forumla I usedhttp://www.uwgb.edu/dutchs/usefuldata/utmformulas.htm public void onLocationChanged(Location location) { lat = Math.toRadians(location.getLatitude()); // Latitude in radians lng =

[android-developers] Re: Converting LAt Long to UTM

2012-10-19 Thread Karl Kristian Markman
)) for setting odd powers. On Friday, October 12, 2012 11:50:48 PM UTC+2, Lew wrote: Karl Kristian Markman wrote: Lew is this more what you are looking for?? Nope. I was talking about the conversion of 'int' to 'double', which does not involve any formulas. public final double a = 6378137

[android-developers] Re: Converting LAt Long to UTM

2012-10-19 Thread Karl Kristian Markman
On Friday, October 19, 2012 1:32:23 PM UTC+2, Karl Kristian Markman wrote: Sorry for the TAB usage but I just copy/past from eclipse.. I have one more problem here. The conversion sort of works but I miss the target by about 200 meters West. I have figured it out to bee this line

[android-developers] Re: Creating a PDF on Adroid?

2012-10-25 Thread Karl Kristian Markman
So basically anything that goes in Java should work in Android? On Friday, December 3, 2010 11:45:32 AM UTC+1, Atul Moglewar wrote: Here is the list of open source PDF libraries in Java http://java-source.net/open-source/pdf-libraries Atul On Dec 3, 10:31 am, Zsolt Vasvari

[android-developers] Re: Barcode Scanner app

2012-11-01 Thread Karl Kristian Markman
You will find all you need here: http://code.google.com/p/zxing/ and here is integration explained http://stackoverflow.com/questions/2050263/using-zxing-to-create-an-android-barcode-scanning-app On Thursday, November 1, 2012 6:30:39 AM UTC+1, askl wrote: Thank you. Can you send me the