我是靠谱客的博主 缓慢花瓣,最近开发中收集的这篇文章主要介绍获取sd卡容量,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

<h2 name="code" class="java">import java.io.File;
import android.app.Activity;
import android.os.Bundle;
import android.os.Environment;
import android.text.format.Formatter;
import android.widget.TextView;
public class MainActivity extends Activity {
	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);

             // [1]找到我们关心的控件
		TextView tv_total_size = (TextView) findViewById(R.id.textView1);
		TextView tv_useable_size = (TextView) findViewById(R.id.textView3);
		
                // [2]要获取sd卡的容量 也通过 Environment
		File file = Environment.getExternalStorageDirectory();
		long totalSpace = file.getTotalSpace(); // 返回总大小 以字节为单位
		long usableSpace = file.getUsableSpace();
		
                // [3]要把获取的totalSpace 和 usableSpace转换单位
		String totalSpaceSize = Formatter.formatFileSize(getApplicationContext(), totalSpace);
		String usableSpaceSize = Formatter.formatFileSize(getApplicationContext(), usableSpace);
		
                // [4]把转换单位之后的数据显示到textview上
		tv_total_size.setText("总大小:" + totalSpaceSize);
		tv_useable_size.setText("可用:" + usableSpaceSize);
	}
}</h2>






最后

以上就是缓慢花瓣为你收集整理的获取sd卡容量的全部内容,希望文章能够帮你解决获取sd卡容量所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(60)

评论列表共有 0 条评论

立即
投稿
返回
顶部