am 79204a32: am 15369c6c: Merge "Fix volume naming when surfaced over MTP." into mnc-dev

* commit '79204a32bd98b0ce42fc55be72305ec2c8a1606f':
  Fix volume naming when surfaced over MTP.
This commit is contained in:
Jeff Sharkey
2015-07-07 23:58:37 +00:00
committed by Android Git Automerger

View File

@@ -232,7 +232,7 @@ public class VolumeInfo implements Parcelable {
}
public @Nullable String getDescription() {
if (ID_PRIVATE_INTERNAL.equals(id)) {
if (ID_PRIVATE_INTERNAL.equals(id) || ID_EMULATED_INTERNAL.equals(id)) {
return Resources.getSystem().getString(com.android.internal.R.string.storage_internal);
} else if (!TextUtils.isEmpty(fsLabel)) {
return fsLabel;
@@ -317,6 +317,9 @@ public class VolumeInfo implements Parcelable {
}
String description = getDescription();
if (description == null) {
description = getFsUuid();
}
if (description == null) {
description = context.getString(android.R.string.unknownName);
}