Support detecting whether device is a tablet and use that to determine whether to enforce portrait orientation

This commit is contained in:
drdev
2015-05-25 02:16:53 +00:00
parent ae47fb74a7
commit 63d024ed37
3 changed files with 27 additions and 6 deletions

View File

@@ -3,6 +3,7 @@ package forge.interfaces;
public interface IDeviceAdapter {
boolean isConnectedToInternet();
boolean isConnectedToWifi();
boolean isTablet();
String getDownloadsDir();
boolean openFile(String filename);
void exit();