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為例):
打開手機的「設置」
注意:不同品牌手機進入開發者選項的方法可能不同