modify default display name for root folder

This commit is contained in:
Joe Apicella 2017-10-25 21:41:19 -07:00 committed by tobiasKaminsky
parent 6e98e25184
commit 333b544001
No known key found for this signature in database
GPG key ID: 0E00D4D47D0C5AF7

View file

@ -224,6 +224,9 @@ public final class ThemeUtils {
public static String getDefaultDisplayNameForRootFolder(Context context) {
OCCapability capability = getCapability(context);
if (MainApp.isOnlyOnDevice()) {
return MainApp.getAppContext().getString(R.string.drawer_item_on_device);
} else {
if (capability.getServerName() == null || capability.getServerName().isEmpty()) {
return MainApp.getAppContext().getResources().getString(R.string.default_display_name_for_root_folder);
} else {
@ -231,6 +234,8 @@ public final class ThemeUtils {
}
}
}
public static void setStatusBarColor(Activity activity, @ColorInt int color) {
if (activity != null && Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
activity.getWindow().setStatusBarColor(color);