欢迎来到尧图网

客户服务 关于我们

您的位置:首页 > 新闻 > 资讯 > Android 根据内存大小显示MTP模式连接PC时的名称

Android 根据内存大小显示MTP模式连接PC时的名称

2025/1/7 23:58:03 来源:https://blog.csdn.net/yesdehua/article/details/144882951  浏览:    关键词:Android 根据内存大小显示MTP模式连接PC时的名称

项目有两种内存,要求根据连接电脑拷贝文件时的盘符名称根据内存大小显示不同名称。

frameworks/base/media/java/android/mtp/MtpDatabase.java+//mh@
+import android.app.ActivityManager;
...
@@ -894,7 +896,19 @@ public class MtpDatabase implements AutoCloseable {private int getDeviceProperty(int property, long[] outIntValue, char[] outStringValue) {switch (property) {case MtpConstants.DEVICE_PROPERTY_SYNCHRONIZATION_PARTNER:case MtpConstants.DEVICE_PROPERTY_DEVICE_FRIENDLY_NAME:// writable string properties kept in shared preferencesString value = mDeviceProperties.getString(Integer.toString(property), "");
+                //mh@start 两种内存,大于1G加pro
+                if(getTotalMem() > 1000l) {
+                    value = value + " PRO";
+                }
+                //mh@endint length = value.length();if (length > 255) {length = 255;...
+   //mh@start
+	private long getTotalMem() {
+		ActivityManager activityManager = (ActivityManager) mContext.getSystemService(Context.ACTIVITY_SERVICE);
+       ActivityManager.MemoryInfo memInfo = new ActivityManager.MemoryInfo();
+       activityManager.getMemoryInfo(memInfo);
+       long totalMem = memInfo.totalMem / 1000000;
+       Log.d("mh.log", "MtpDatabase--getDeviceProperty--totalMem:" + totalMem);
+       return totalMem;
+	}
+	//mh@end

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com