Modify Running Services layout

- Also remove some unused resource

Fixes: 139911198
Test: manual
Change-Id: I70447255df822c5b2a940ecbc3f2fa27707c660b
Screenshot: https://screenshot.googleplex.com/jBEdhunufTb
This commit is contained in:
Raff Tsai
2019-10-24 14:31:54 +08:00
parent 5b4f01e4b2
commit 52ee4888be
13 changed files with 97 additions and 296 deletions

View File

@@ -164,11 +164,11 @@ public class RunningProcessesView extends FrameLayout
public ViewHolder(View v) {
rootView = v;
icon = (ImageView)v.findViewById(R.id.icon);
name = (TextView)v.findViewById(R.id.name);
description = (TextView)v.findViewById(R.id.description);
size = (TextView)v.findViewById(R.id.size);
uptime = (TextView)v.findViewById(R.id.uptime);
icon = v.findViewById(android.R.id.icon);
name = v.findViewById(android.R.id.title);
description = v.findViewById(android.R.id.summary);
size = v.findViewById(R.id.widget_summary1);
uptime = v.findViewById(R.id.widget_summary2);
v.setTag(this);
}