Android examples for android.content.pm:PackageManager
is Google TV
import android.content.Context; public class Main{ public static boolean isGoogleTV(final Context theContext) { return theContext.getPackageManager().hasSystemFeature( "com.google.android.tv"); }/*from w w w . ja v a 2s. c o m*/ }