is Meizu Phone - Android Hardware

Android examples for Hardware:Vendor

Description

is Meizu Phone

Demo Code


//package com.java2s;

import android.util.Log;

public class Main {
    private static final String TAG = "CameraHelper";

    public static boolean isMZPhone() {
        String model = android.os.Build.MODEL;
        String manufacturer = android.os.Build.MANUFACTURER;

        if ("Meizu".equalsIgnoreCase(manufacturer)) {
            return true;
        } else {//from   w w  w .  j av  a 2 s .c o  m
            return false;
        }
    }
}

Related Tutorials