Posts

Showing posts from 2015

How To View Facebook Locked Profile Picture ?

Image
1. Open the facebook profile of person whose profile picture is locked or is set to private. 2. Right click on the profile picture and click on  Copy Image Url  as shown in image below. 3. Open that image in new tab by  right clicking and selecting Paste (CTRL + V) 4. Now change the value of image size highlighted below which might be  s160x160  to s720x720  (If its not clear try (s320x320) 5. The image will enlarge in size. This trick does not always work.

Locked out your Android smartphone, here are 3 ways to hack the passcode of your device...

Can’t unlock your device, here are some simple steps to reset the passcode using the Google Account.  It is always advisable to have a passcode enabled on the Android device. Of the various reasons one is that it will help family, peers and unwanted acquaintances from snooping in your phone when left unattended and the other reason is to save your sensitive and personal data from being accessed by unknown people in case it gets into the hands of thieves in the scenario it gets stolen.  There are umpteen advantages of setting a passcode to the Android device however there is one major drawback in case if someone forgets their password because one cannot get through the phone until the passcode has been entered and here this article will come handy.  We will check the methods which will help you to get access to your locked Android device:  Erase the memory of the device: The most important requirement for this technique to give 100% result is that the Android Device Manager (ADM

Android Handler Example sap

In this example we will see how to use Handler in android. This example downloads image from server and using Handler it is communicating back with UI thread. A Handler allows you communicate back with the UI thread from other background thread. This is useful in android as android doesn’t allow other threads to communicate directly with UI thread. Handler can send and process Message and Runnable objects associated with a thread’s MessageQueue. Each Handler instance is associated with a single thread and that thread’s message queue. When a new Handler is created, it is bound to the thread/message queue of the thread that is creating it. The example explained in this tutorial is using below configurations JDK 1.6 Eclipse 4.2 Juno Android SKD 4.0 And tested over HTC OneX (Android 4.2) Android Activity Layout (activity_main.xml) <LinearLayout xmlns:android=" http://schemas.android.com/apk/res/android " xmlns:tools=" http://schemas.android.com/tools " androi

Android Handler Example sap

In this example we will see how to use Handler in android.  This example downloads image from server and using Handler it is communicating back with UI thread. A Handler allows you communicate back with the UI thread from other background thread. This is useful in android as android doesn’t allow other threads to communicate directly with UI thread. Handler can send and process Message and Runnable objects associated with a thread’s MessageQueue. Each Handler instance is associated with a single thread and that thread’s message queue. When a new Handler is created, it is bound to the thread/message queue of the thread that is creating it. The example explained in this tutorial is using below configurations JDK 1.6 Eclipse 4.2 Juno Android SKD 4.0 And tested over HTC OneX (Android 4.2) Android Activity Layout (activity_main.xml) <LinearLayout xmlns:android = "http://schemas.android.com/apk/res/android" xmlns:tools = "http://schemas.android.com/tool