Add a test item the turns on a bunch of extra icons.

Change-Id: Ia5884ef46a5b0fa2d608c7924b3eb12293a1da8b
This commit is contained in:
Joe Onorato
2010-06-07 12:36:51 -07:00
parent 75144ea38e
commit 0faeb078cf

View File

@@ -157,5 +157,22 @@ public class StatusBarTest extends TestActivity
}, 3000);
}
},
new Test("More icons") {
public void run() {
for (String slot: new String[] {
"sync_failing",
"gps",
"bluetooth",
"tty",
"speakerphone",
"mute",
"wifi",
"alarm_clock",
"secure",
}) {
mStatusBarManager.setIconVisibility(slot, true);
}
}
},
};
}