Back to project page LicenseModuleChecker-Client-Android.
The source code is released under:
<?xml version="1.0" encoding="UTF-8"?> <module external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$" external.system.id="GRADLE" type="JAVA_MODULE" version="4"> <comp...
If you think the Android project LicenseModuleChecker-Client-Android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.asynhkm.productchecker.Util; /*from ww w .j a v a2s .co m*/ import android.app.Activity; import android.app.DialogFragment; import android.content.Context; /** * Created by Hesk. This is the basic part of the dialog function that needs to be extended for complete release of the Dialog Activity */ public class RootDialog extends DialogFragment { // Use this instance of the interface to deliver action events protected Context ctx; // Override the Fragment.onAttach() method to instantiate the DialogCB @Override public void onAttach(Activity activity) { super.onAttach(activity); // Verify that the host activity implements the callback interface try { ctx = getActivity(); // Instantiate the DialogCB so we can send events to the host } catch (ClassCastException e) { // The activity doesn't implement the interface, throw exception throw new ClassCastException(activity.toString() + " must implement DialogCB"); } } }