Last active
August 29, 2015 14:06
-
-
Save takahirom/b55cfe0f3943722f379d to your computer and use it in GitHub Desktop.
Android Wearを判定する
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.content.Context; | |
import java.lang.reflect.Method; | |
public class JudgeAndroidWear { | |
public static boolean isWear(Context context){ | |
String defaultCharacteristics = ""; | |
String characteristics = get(context, "ro.build.characteristics", defaultCharacteristics); | |
return characteristics.contains("watch"); | |
} | |
/** | |
* from StackOverFlow http://stackoverflow.com/questions/2641111/where-is-android-os-systemproperties | |
* Get the value for the given key. | |
* @return if the key isn't found, return def if it isn't null, or an empty string otherwise | |
* @throws IllegalArgumentException if the key exceeds 32 characters | |
*/ | |
private static String get(Context context, String key, String def) throws IllegalArgumentException { | |
String ret= def; | |
try{ | |
ClassLoader cl = context.getClassLoader(); | |
@SuppressWarnings("rawtypes") | |
Class SystemProperties = cl.loadClass("android.os.SystemProperties"); | |
//Parameters Types | |
@SuppressWarnings("rawtypes") | |
Class[] paramTypes= new Class[2]; | |
paramTypes[0]= String.class; | |
paramTypes[1]= String.class; | |
Method get = SystemProperties.getMethod("get", paramTypes); | |
//Parameters | |
Object[] params= new Object[2]; | |
params[0]= new String(key); | |
params[1]= new String(def); | |
ret= (String) get.invoke(SystemProperties, params); | |
}catch( IllegalArgumentException iAE ){ | |
throw iAE; | |
}catch( Exception e ){ | |
ret= def; | |
//TODO | |
} | |
return ret; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment