1
0
Fork 0
mirror of https://github.com/gsantner/dandelion synced 2024-06-16 08:34:55 +02:00

Auto reformat code

This commit is contained in:
Gregor Santner 2019-02-07 10:31:18 +01:00
parent fb8eb60974
commit 24571f6921
No known key found for this signature in database
GPG key ID: 7E83A7834AECB009
5 changed files with 13 additions and 16 deletions

View file

@ -565,12 +565,10 @@ public class MainActivity extends ThemedActivity
} else if ("sc_activities".equals(action)) { } else if ("sc_activities".equals(action)) {
openDiasporaUrl(urls.getActivityUrl()); openDiasporaUrl(urls.getActivityUrl());
return; return;
} } else if ("sc_contacts".equals(action)) {
else if ("sc_contacts".equals(action)) {
onNavigationItemSelected(navView.getMenu().findItem(R.id.nav_aspects)); onNavigationItemSelected(navView.getMenu().findItem(R.id.nav_aspects));
return; return;
} } else if ("sc_tags".equals(action)) {
else if ("sc_tags".equals(action)) {
onNavigationItemSelected(navView.getMenu().findItem(R.id.nav_followed_tags)); onNavigationItemSelected(navView.getMenu().findItem(R.id.nav_followed_tags));
return; return;
} }

View file

@ -451,6 +451,7 @@ public class AppSettings extends SharedPreferencesPropertyBackend {
public boolean isAmoledColorMode() { public boolean isAmoledColorMode() {
return getBool(R.string.pref_key__primary_color__amoled_mode, false); return getBool(R.string.pref_key__primary_color__amoled_mode, false);
} }
public void setAmoledColorMode(boolean enable) { public void setAmoledColorMode(boolean enable) {
setBool(R.string.pref_key__primary_color__amoled_mode, enable); setBool(R.string.pref_key__primary_color__amoled_mode, enable);
} }

View file

@ -21,6 +21,7 @@ package com.github.dfa.diaspora_android.web;
import android.content.Context; import android.content.Context;
import android.content.MutableContextWrapper; import android.content.MutableContextWrapper;
import android.os.Bundle; import android.os.Bundle;
import android.support.v4.widget.SwipeRefreshLayout;
import android.view.View; import android.view.View;
import android.view.ViewGroup; import android.view.ViewGroup;
import android.webkit.WebSettings; import android.webkit.WebSettings;
@ -33,7 +34,6 @@ import com.github.dfa.diaspora_android.ui.theme.ThemeHelper;
import com.github.dfa.diaspora_android.ui.theme.ThemedFragment; import com.github.dfa.diaspora_android.ui.theme.ThemedFragment;
import com.github.dfa.diaspora_android.util.AppLog; import com.github.dfa.diaspora_android.util.AppLog;
import com.github.dfa.diaspora_android.util.AppSettings; import com.github.dfa.diaspora_android.util.AppSettings;
import android.support.v4.widget.SwipeRefreshLayout;//pull to refresh
/** /**
* Fragment with a webView and a ProgressBar. * Fragment with a webView and a ProgressBar.
@ -99,7 +99,6 @@ public class BrowserFragment extends ThemedFragment {
swipe.setOnRefreshListener(() -> reloadUrl()); swipe.setOnRefreshListener(() -> reloadUrl());
if (appSettings.isSwipeRefreshEnabled()) { if (appSettings.isSwipeRefreshEnabled()) {
swipe.setEnabled(true); swipe.setEnabled(true);
} else { } else {
swipe.setRefreshing(false); swipe.setRefreshing(false);
swipe.setEnabled(false); swipe.setEnabled(false);

View file

@ -19,7 +19,6 @@
package com.github.dfa.diaspora_android.web; package com.github.dfa.diaspora_android.web;
import android.annotation.TargetApi; import android.annotation.TargetApi;
import android.content.Context;
import android.content.Intent; import android.content.Intent;
import android.net.Uri; import android.net.Uri;
import android.os.Build; import android.os.Build;