Hi,
I've never imagined that playing a HTML5 Youtube video inside a WebView would be such a tedious task. I even didn't think of it as a separate task.
The problem is that the video doesn't play. YES, it's as simple as that.
Any way, I found a work around solution that causes the video to run inside the media player instead of the WebView and of-course instead...
Saturday, March 24, 2012
Galaxy SII, Forgot account password and want to reset to factory settings
Posted by Polaris on 12:41 PM
Hi,
The problem can be solved by opening the keypad and pressing the following keys:
*2767*3855#
CAUTION:
Once you press the ( # ) key, the device will start the process. No menus will appear and No options will be available, The process will just start.
The original thread is here.
That's it, don't hesitate to comment, to share your knowledge and to correct me.&nb...
Posted in Tech
Wednesday, March 21, 2012
How does Google's WiFi location based services work??
Posted by Polaris on 3:37 PM
Hi,
I was wondering how Google can find my location when I'm using WiFi, and I kept digging the Internet to find an answer.
To collect information about WiFi access points, Google uses information provided by
cellphone handsets.
computer applications.
radio receivers attached to vehicles.
Google used wardriving to collect data about access points. It used the same vehicles...
Posted in Tech
Friday, March 9, 2012
Android: Push notifications using Urban-Airship's push library
Posted by Polaris on 11:24 AM

This Post Is Deprecated ...
Hi,
Once upon a time I was developing an application for platforms starting from 2.1 ( API level 7 ) and it happened that I needed the app to receive notifications from the server.
Actually, I achieved this using C2DM directly ( with no external libraries ) by following this tutorial, AND then I
achieved this once again...
Posted in Android
Thursday, March 1, 2012
Objective-C: Hello World!
Posted by Polaris on 5:40 PM
Hi,
This is the famous (Hello, World!) example using the Objective-C programming language.
#import <Foundation/Foundation.h>
int main(int arg, const char * argv[]){
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
NSLog(@"Hello, World!");
[pool drain];
return 0;
}
Explanation:
#import:
It's used to include what's in a file (classes, functions,...
Posted in Objective-C
Subscribe to:
Posts (Atom)
Android: Play HTML5 Youtube videos inside a WebView !!!