This file contains 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
import android.os.Build; | |
/** | |
* Utility methods related to physical devies and emulators. | |
*/ | |
public class DeviceUtil { | |
public static boolean isEmulator() { | |
return Build.FINGERPRINT.startsWith("generic") | |
|| Build.FINGERPRINT.startsWith("unknown") |
This file contains 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
protected TextViewer(LayoutManager layoutManager, Object constaints, JLabel label) { | |
this.setLayout(layoutManager); | |
this.label = label; | |
this.add(label, constaints); | |
} |