@@ -338,7 +338,7 @@ private void updateDisplayModeId() {
338338 //mDisplayModeId.add(new Pair<>("Display modes length", supportedModes != null ? String.valueOf(supportedModes.length) : NOT_AVAILABLE));
339339 String modeId = currentMode != null ? String .valueOf (currentMode .getModeId ()) : NOT_AVAILABLE ;
340340 String modeLength = supportedModes != null ? String .valueOf (supportedModes .length ) : NOT_AVAILABLE ;
341- mDisplayModeId .add (new Pair <>("Display mode ID/length " , modeId + "/" + modeLength ));
341+ mDisplayModeId .add (new Pair <>("Display mode ( ID/Length) " , modeId + "/" + modeLength ));
342342 }
343343
344344 private void appendDisplayInfo () {
@@ -380,7 +380,7 @@ private void appendDeviceNameSDKCache() {
380380 private void appendMemoryInfo () {
381381 //appendRow("Max heap memory (MB)", DeviceHelpers.getMaxHeapMemoryMB()); // Growth Limit
382382 //appendRow("Allocated heap memory (MB)", DeviceHelpers.getAllocatedHeapMemoryMB());
383- appendRow ("Allocated memory ( MB)" , DeviceHelpers .getAllocatedHeapMemoryMB () + "/" + DeviceHelpers .getMaxHeapMemoryMB ());
383+ appendRow ("Memory (Alloc/Max, MB)" , DeviceHelpers .getAllocatedHeapMemoryMB () + "/" + DeviceHelpers .getMaxHeapMemoryMB ());
384384 }
385385
386386 private void appendWebViewInfo () {
@@ -407,7 +407,7 @@ private void appendPlayerVersion() {
407407 shortPlayerUrl = shortPlayerUrl != null ? shortPlayerUrl .split ("/" )[1 ] : null ;
408408 CharSequence coloredVersion = isFailed ? Utils .color (playerVersion , Color .RED ) : playerVersion ;
409409 CharSequence coloredType = isFailed ? Utils .color (shortPlayerUrl , Color .RED ) : shortPlayerUrl ;
410- appendRow ("Web player version/type " , TextUtils .concat (coloredVersion , "/" , coloredType ));
410+ appendRow ("Web player (Version/Type) " , TextUtils .concat (coloredVersion , "/" , coloredType ));
411411 }
412412 }
413413
0 commit comments