Here you can find the source of getHostActivity()
public static synchronized Activity getHostActivity()
//package com.java2s; import java.lang.ref.WeakReference; import android.app.Activity; public class Main { protected static WeakReference<Activity> currHostActivity = new WeakReference<Activity>( null);//from w w w. jav a 2 s . c om public static synchronized Activity getHostActivity() { return (currHostActivity.get()); } }