亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

怎么在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

承德市| 陵水| 团风县| 平利县| 和硕县| 遵义市| 墨竹工卡县| 阿克苏市| 洛隆县| 东台市| 兴和县| 遵义市| 资溪县| 灵石县| 神池县| 钟祥市| 青河县| 罗田县| 乌兰察布市| 襄垣县| 长沙县| 商洛市| 体育| 平陆县| 宜春市| 绥宁县| 泸西县| 千阳县| 禄丰县| 绥江县| 泸水县| 越西县| 申扎县| 慈利县| 岗巴县| 乌兰县| 平江县| 台州市| 陇西县| 张家界市| 阿鲁科尔沁旗|