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:
Varun Shah
2020-06-05 21:47:29 -07:00
parent 03b20f864a
commit c920a58d5f
6 changed files with 19 additions and 1 deletions

View File

@@ -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;
}