91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在Android應用中實現一個查看內存使用情況功能

發布時間:2020-12-03 14:59:19 來源:億速云 閱讀:366 作者:Leah 欄目:移動開發

怎么在Android應用中實現一個查看內存使用情況功能?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

創建項目

Android清單文件

<&#63;xml version="1.0" encoding="utf-8"&#63;>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
 package="com.itheima28.memorydemo"
 android:versionCode="1"
 android:versionName="1.0" >
 
 <uses-sdk
  android:minSdkVersion="8"
  android:targetSdkVersion="19" />
    
 <application
  android:allowBackup="true"
  android:icon="@drawable/ic_launcher"
  android:label="@string/app_name"
  android:theme="@style/AppTheme" >
  <activity
   android:name="com.itheima28.memorydemo.MainActivity"
   android:label="@string/app_name" >
   <intent-filter>
    <action android:name="android.intent.action.MAIN" />
 
    <category android:name="android.intent.category.LAUNCHER" />
   </intent-filter>
  </activity>
 </application>
 
</manifest>

 布局文件

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:tools="http://schemas.android.com/tools"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:paddingBottom="@dimen/activity_vertical_margin"
 android:paddingLeft="@dimen/activity_horizontal_margin"
 android:paddingRight="@dimen/activity_horizontal_margin"
 android:paddingTop="@dimen/activity_vertical_margin"
 tools:context="com.itheima28.memorydemo.MainActivity$PlaceholderFragment" >
 
 <TextView
  android:id="@+id/tv_memory_info"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_centerInParent="true"/>
 
</RelativeLayout>

查詢內存的代碼

package com.itheima28.memorydemo;
 
import Java.io.File;
 
import android.os.Bundle;
import android.os.Environment;
import android.os.StatFs;
import android.support.v7.app.ActionBarActivity;
import android.text.format.Formatter;
import android.widget.TextView;
 
public class MainActivity extends ActionBarActivity {
 
 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_main);
  
  TextView tvMemoryInfo = (TextView) findViewById(R.id.tv_memory_info);
  
  //獲得sd卡的內存狀態
  File sdcardFileDir = Environment.getExternalStorageDirectory();
  String sdcardMemory = getMemoryInfo(sdcardFileDir);
 
  //獲得手機內部存儲控件的狀態
  File dataFileDir = Environment.getDataDirectory();
  String dataMemory = getMemoryInfo(dataFileDir);
 
  tvMemoryInfo.setText("SD卡: " + sdcardMemory + "\n手機內部: " + dataMemory);
 }
 
 /**
  * 根據路徑獲取內存狀態
  * @param path
  * @return
  */
 @SuppressWarnings("deprecation")
 private String getMemoryInfo(File path) {
  //獲得一個磁盤狀態對象
  StatFs stat = new StatFs(path.getPath());
  
  //獲得一個扇區的大小
  long blockSize = stat.getBlockSize();
 
  //獲得扇區的總數
  long totalBlocks = stat.getBlockCount();
  
  //獲得可用的扇區數量
  long availableBlocks = stat.getAvailableBlocks();
 
  //總空間
  String totalMemory = Formatter.formatFileSize(this, totalBlocks * blockSize);
  
  //可用空間
  String availableMemory = Formatter.formatFileSize(this, availableBlocks * blockSize);
  
  return "總空間:" + totalMemory + "\n可用空間:" + availableMemory;
 }
}

看完上述內容,你們掌握怎么在Android應用中實現一個查看內存使用情況功能的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

彩票| 铅山县| 苏州市| 安康市| 南康市| 桑植县| 亚东县| 阿坝县| 确山县| 侯马市| 洛扎县| 桐城市| 遵化市| 盐津县| 泗阳县| 镇巴县| 东山县| 蒙山县| 东海县| 通山县| 海原县| 山阴县| 含山县| 茶陵县| 新邵县| 屯昌县| 黔西| 富川| 阜康市| 资阳市| 唐河县| 如东县| 怀柔区| 剑川县| 巴塘县| 新化县| 土默特左旗| 巩留县| 博爱县| 鞍山市| 广宁县|