Android Device Type Check getPhoneModel()

Here you can find the source of getPhoneModel()

Description

get Phone Model

Declaration

public static String getPhoneModel() 

Method Source Code

//package com.java2s;

public class Main {
    public static String getPhoneModel() {
        return android.os.Build.MODEL == null ? "Unknown"
                : android.os.Build.MODEL;
    }//from   w  ww  .  j a  va 2  s .c om
}

Related

  1. isGoogleTV(final Context context)
  2. isTablet(Context context)
  3. isTablet(Context ctx)
  4. isTablet(final Context context)
  5. getDeviceName()
  6. convertPhoneType(int type)
  7. getDeviceType(Activity act)