This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private static final int PULLDOWN_DIR_NONE = 0; | |
private static final int PULLDOWN_DIR_RIGHT = 1; | |
private static final int PULLDOWN_DIR_LEFT = 2; | |
private void updateQuickPulldownSummary(int value) { | |
String summary; | |
switch (value) { | |
case PULLDOWN_DIR_NONE: | |
summary = getResources().getString( | |
R.string.status_bar_quick_qs_pulldown_off); |