android手机cpu
㈠ Android CPU、GPU协同工作原理
想要懂得制作性能卓越的应用,你必须先透彻了解应用设计的原理,如果你不清楚硬件的工作原理,那么你可能无法最大发挥出它的性能。当一个应用被渲染时,理解Andorid是如何利用GPU的,可以很大程度的帮助你理解性能方面的问题。
,这一过程是指将高级对象:比如一个按钮,一个线条,一个路径,一个形状,转化成像素,显示在屏幕上。光栅化是一个非常耗时的过程,因此移动设备有一个硬件,专门为光栅化而设计的:图形处理器,或者说GPU,在上一个世纪90年代,被引入主流计算机,其目的是加速光栅化过程,GPU本身设计要求使用一套特别的基元,将多边形,纹理,图像转化成像素的形式,而cpu的作用就是将这些基元送到GPU,这一过程借助Android系统上一套常见的API,叫做openGL ES,
绘制文字更是双重灾难:
㈡ 为什么有些android手机,运行某些程序时,cpu会占用特高导致发热严重
一般运行google官方的一些程序的时候会导致cpu占用过高,我个人感觉这是因为运行google程序时会连带着触发其他
的一些google程序,如google
talk和gmail都会触发同步底层程序,就算你把gtalk和gmail退出了但是同步可能未必关闭了。当然以上只是我自己的一点想法。建议用高级任务杀手这款任务清理后台应用程序,并且将不是特别重要的程序移动到sd卡上去,减少对手机内存的占用,也许对cpu占用过高也有益处。希望我的回答可以帮到你
㈢ android获取手机cpu是单核还是多核的方法
android的Cpu信息是存在/sys/devices/system/cpu中的,在目录中,我们可以看到存在多个文件,一个文件就是一核Cpu的信息。上面写有cpu0,cpu1,cup3诸如此类的文件夹。要获得它是几核的Cpu,只要读取一下那个cpu目录下有几个cpu+数字的文件夹就可以了。/** * Gets the number of cores available in this device, across all processors. * Requires: Ability to peruse the filesystem at "/sys/devices/system/cpu" * @return The number of cores, or 1 if failed to get result */private int getNumCores() { //Private Class to display only CPU devices in the directory listing class CpuFilter implements FileFilter { @Override public boolean accept(File pathname) { //Check if filename is "cpu", followed by a single digit number if(Pattern.matches("cpu[0-9]", pathname.getName())) { return true; } return false; } } try { //Get directory containing CPU info File dir = new File("/sys/devices/system/cpu/"); //Filter to only list the devices we care about File[] files = dir.listFiles(new CpuFilter()); //Return the number of cores (virtual CPU devices) return files.length; } catch(Exception e) { //Default to return 1 core return 1; }}
㈣ Android获取系统cpu信息,内存,版本,电量等信息
1、CPU频率,CPU信息:/proc/cpuinfo和/proc/stat
通过读取文件/proc/cpuinfo系统CPU的类型等多种信息。
读取/proc/stat 所有CPU活动的信息来计算CPU使用率
下面我们就来讲讲如何通过代码来获取CPU频率:
复制代码 代码如下:
package com.orange.cpu;
import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
import java.io.InputStream;
public class CpuManager {
// 获取CPU最大频率(单位KHZ)
// "/system/bin/cat" 命令行
// "/sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_max_freq" 存储最大频率的文件的.路径
public static String getMaxCpuFreq() {
String result = "";
ProcessBuilder cmd;
try {
String[] args = { "/system/bin/cat",
"/sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_max_freq" };
cmd = new ProcessBuilder(args);
Process process = cmd.start();
InputStream in = process.getInputStream();
byte[] re = new byte[24];
while (in.read(re) != -1) {
result = result + new String(re);
}
in.close();
} catch (IOException ex) {
ex.printStackTrace();
result = "N/A";
}
return result.trim();
}
// 获取CPU最小频率(单位KHZ)
public static String getMinCpuFreq() {
String result = "";
ProcessBuilder cmd;
try {
String[] args = { "/system/bin/cat",
"/sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_min_freq" };
cmd = new ProcessBuilder(args);
Process process = cmd.start();
InputStream in = process.getInputStream();
byte[] re = new byte[24];
while (in.read(re) != -1) {
result = result + new String(re);
}
in.close();
} catch (IOException ex) {
ex.printStackTrace();
result = "N/A";
}
return result.trim();
}
// 实时获取CPU当前频率(单位KHZ)
public static String getCurCpuFreq() {
String result = "N/A";
try {
FileReader fr = new FileReader(
"/sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq");
BufferedReader br = new BufferedReader(fr);
String text = br.readLine();
result = text.trim();
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
return result;
}
// 获取CPU名字
public static String getCpuName() {
try {
FileReader fr = new FileReader("/proc/cpuinfo");
BufferedReader br = new BufferedReader(fr);
String text = br.readLine();
String[] array = text.split(":s+", 2);
for (int i = 0; i < array.length; i++) {
}
return array[1];
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
return null;
}
}
2、内存:/proc/meminfo
复制代码 代码如下:
public void getTotalMemory() {
String str1 = "/proc/meminfo";
String str2="";
try {
FileReader fr = new FileReader(str1);
BufferedReader localBufferedReader = new BufferedReader(fr, 8192);
while ((str2 = localBufferedReader.readLine()) != null) {
Log.i(TAG, "---" + str2);
}
} catch (IOException e) {
}
}
3、Rom大小
复制代码 代码如下:
public long[] getRomMemroy() {
long[] romInfo = new long[2];
//Total rom memory
romInfo[0] = getTotalInternalMemorySize();
//Available rom memory
File path = Environment.getDataDirectory();
StatFs stat = new StatFs(path.getPath());
long blockSize = stat.getBlockSize();
long availableBlocks = stat.getAvailableBlocks();
romInfo[1] = blockSize * availableBlocks;
getVersion();
return romInfo;
}
public long getTotalInternalMemorySize() {
File path = Environment.getDataDirectory();
StatFs stat = new StatFs(path.getPath());
long blockSize = stat.getBlockSize();
long totalBlocks = stat.getBlockCount();
return totalBlocks * blockSize;
}
4、sdCard大小
复制代码 代码如下:
public long[] getSDCardMemory() {
long[] sdCardInfo=new long[2];
String state = Environment.getExternalStorageState();
if (Environment.MEDIA_MOUNTED.equals(state)) {
File sdcardDir = Environment.getExternalStorageDirectory();
StatFs sf = new StatFs(sdcardDir.getPath());
long bSize = sf.getBlockSize();
long bCount = sf.getBlockCount();
long availBlocks = sf.getAvailableBlocks();
sdCardInfo[0] = bSize * bCount;//总大小
sdCardInfo[1] = bSize * availBlocks;//可用大小
}
return sdCardInfo;
}
5、电池电量
复制代码 代码如下:
private BroadcastReceiver batteryReceiver=new BroadcastReceiver(){
@Override
public void onReceive(Context context, Intent intent) {
int level = intent.getIntExtra("level", 0);
// level加%就是当前电量了
}
};
registerReceiver(batteryReceiver, new IntentFilter(Intent.ACTION_BATTERY_CHANGED));
6、系统的版本信息
复制代码 代码如下:
public String[] getVersion(){
String[] version={"null","null","null","null"};
String str1 = "/proc/version";
String str2;
String[] arrayOfString;
try {
FileReader localFileReader = new FileReader(str1);
BufferedReader localBufferedReader = new BufferedReader(
localFileReader, 8192);
str2 = localBufferedReader.readLine();
arrayOfString = str2.split("s+");
version[0]=arrayOfString[2];//KernelVersion
localBufferedReader.close();
} catch (IOException e) {
}
version[1] = Build.VERSION.RELEASE;// firmware version
version[2]=Build.MODEL;//model
version[3]=Build.DISPLAY;//system version
return version;
}
7、mac地址和开机时间
复制代码 代码如下:
public String[] getOtherInfo(){
String[] other={"null","null"};
WifiManager wifiManager = (WifiManager) mContext.getSystemService(Context.WIFI_SERVICE);
WifiInfo wifiInfo = wifiManager.getConnectionInfo();
if(wifiInfo.getMacAddress()!=null){
other[0]=wifiInfo.getMacAddress();
} else {
other[0] = "Fail";
}
other[1] = getTimes();
return other;
}
private String getTimes() {
long ut = SystemClock.elapsedRealtime() / 1000;
if (ut == 0) {
ut = 1;
}
int m = (int) ((ut / 60) % 60);
int h = (int) ((ut / 3600));
return h + " " + mContext.getString(R.string.info_times_hour) + m + " "
+ mContext.getString(R.string.info_times_minute);
}
㈤ Android手机的CPU大约在哪个位置
处理器一般在手机的上部,一般都是BGA在手机主板上面(就是焊在手机主板上面)。
把手机拆开也是不能把手机处理器拿下来的,想拿下来必须用专业的热风枪把它吹下来,而且要注意保护主板上面的其它元器件。
型号比较
1、德州仪器
优点:低频高能且耗电量较少,高端智能机必备CPU。
缺点:价格不菲,对应的手机价格也很高,OMAP3系列GPU性能不高,但OMAP4系列有了明显改善,数据处理能力较弱。
2、INTEL
优点:CPU主频高,速度快。
缺点:耗电、每频率性能较低。
3、高通
优点:主频高,数据处理性能表现出色,拥有最广泛的产品路线图,支持包括智能手机、平板电脑、智能电视等各类终端,可以支持所有主流移动操作系统,支持3G/4G网络制式。
缺点:图形处理能力较弱,功耗较大。
4、三星
优点:耗电量低、三星蜂鸟S5PC110单核最强,DSP搭配较好,GPU性能较强。
缺点:三星猎户双核发热问题大,搭载MALI400GPU构图单一,兼容性不强。
5、Marvell
优点:很好继承和发挥了PXA的性能。
缺点:功耗大。
6、英伟达
优点:最早上市的双核CPU,搭载的Geforce ULP面积小,性能强,功耗较低。
缺点:Tegra2因为功耗问题去掉了NEON,导致视频解码问题大,支持硬解格式少。
7.华为
优点:是2012年业界体积最小的四核A9架构处理器。他是一款高性能CPU,是华为自主设计。
缺点:兼容性不好。
以上参考自网络-手机CPU
㈥ Android CPU占用是怎么看的
Android系统的CPU占用率属于高级开发者使用的信息,因此在默认情况下是对常规用户隐藏的。
Android系统开启CPU性能监视的方法(以小米手机Android5.1.1为例):
打开手机的“设置”
注意:不同品牌手机进入开发者选项的方法可能不同