I want to create a new window in action. like a popup. I saw the source code of the email application shipped with the Android OS and found this
import com.android.internal.policy.PolicyManager
Window w = PolicyManager.makeNewWindow(mContext);
But I can not find such a class in the SDK. Any idea?
source
share