Created
August 18, 2018 07:33
-
-
Save arjunsk/d86d346a8d526af36457b7939b720bdc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package nougat_products; | |
import android_widget.IDialogueBox; | |
public class NougatInfoDialogueBox implements IDialogueBox{ | |
@Override | |
public void create(String data) { | |
System.out.println("Lollipop info-dialogue showed "+ data); | |
} | |
@Override | |
public void show() { | |
} | |
@Override | |
public void hide() { | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment