Add blob size to shared data dev options screens.
Bug: 156671006 Test: make RunSettingsRoboTests ROBOTEST_FILTER=SharedDataPreferenceControllerTest Test: manual (visual) Change-Id: Ia98c3d9812f6225ee834b4d1b0f12a1a73a87598
This commit is contained in:
@@ -30,6 +30,7 @@ class BlobInfoViewHolder {
|
||||
TextView blobLabel;
|
||||
TextView blobId;
|
||||
TextView blobExpiry;
|
||||
TextView blobSize;
|
||||
|
||||
static BlobInfoViewHolder createOrRecycle(LayoutInflater inflater, View convertView) {
|
||||
if (convertView != null) {
|
||||
@@ -42,6 +43,7 @@ class BlobInfoViewHolder {
|
||||
holder.blobLabel = convertView.findViewById(R.id.blob_label);
|
||||
holder.blobId = convertView.findViewById(R.id.blob_id);
|
||||
holder.blobExpiry = convertView.findViewById(R.id.blob_expiry);
|
||||
holder.blobSize = convertView.findViewById(R.id.blob_size);
|
||||
convertView.setTag(holder);
|
||||
return holder;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user