]> git.ktnx.net Git - mobile-ledger.git/commitdiff
whitespace and wrapping
authorDamyan Ivanov <dam+mobileledger@ktnx.net>
Tue, 17 Dec 2019 19:31:07 +0000 (21:31 +0200)
committerDamyan Ivanov <dam+mobileledger@ktnx.net>
Tue, 17 Dec 2019 19:31:07 +0000 (21:31 +0200)
app/src/main/java/net/ktnx/mobileledger/model/MobileLedgerProfile.java
app/src/main/java/net/ktnx/mobileledger/ui/DatePickerFragment.java
app/src/main/java/net/ktnx/mobileledger/ui/activity/NewTransactionItemHolder.java
app/src/main/java/net/ktnx/mobileledger/ui/profiles/ProfileDetailFragment.java
app/src/main/res/layout/profile_detail.xml

index a12582714c73721922bfdd69eef197d8b4ad5764..e17948f36c8a4d286772af71952f846a5084540c 100644 (file)
@@ -22,6 +22,9 @@ import android.database.Cursor;
 import android.database.sqlite.SQLiteDatabase;
 import android.util.SparseArray;
 
 import android.database.sqlite.SQLiteDatabase;
 import android.util.SparseArray;
 
+import androidx.annotation.NonNull;
+import androidx.annotation.Nullable;
+
 import net.ktnx.mobileledger.App;
 import net.ktnx.mobileledger.R;
 import net.ktnx.mobileledger.async.DbOpQueue;
 import net.ktnx.mobileledger.App;
 import net.ktnx.mobileledger.R;
 import net.ktnx.mobileledger.async.DbOpQueue;
@@ -35,9 +38,6 @@ import java.util.List;
 import java.util.Locale;
 import java.util.UUID;
 
 import java.util.Locale;
 import java.util.UUID;
 
-import androidx.annotation.NonNull;
-import androidx.annotation.Nullable;
-
 import static net.ktnx.mobileledger.utils.Logger.debug;
 
 public final class MobileLedgerProfile {
 import static net.ktnx.mobileledger.utils.Logger.debug;
 
 public final class MobileLedgerProfile {
@@ -95,7 +95,9 @@ public final class MobileLedgerProfile {
                 item.setPreferredAccountsFilter(cursor.getString(9));
                 item.setFutureDates(cursor.getInt(10));
                 list.add(item);
                 item.setPreferredAccountsFilter(cursor.getString(9));
                 item.setFutureDates(cursor.getInt(10));
                 list.add(item);
-                if (item.getUuid().equals(currentProfileUUID)) result = item;
+                if (item.getUuid()
+                        .equals(currentProfileUUID))
+                    result = item;
             }
         }
         Data.profiles.setValue(list);
             }
         }
         Data.profiles.setValue(list);
@@ -264,11 +266,13 @@ public final class MobileLedgerProfile {
                     debug("profile", "returning default value for " + name);
                     result = default_value;
                 }
                     debug("profile", "returning default value for " + name);
                     result = default_value;
                 }
-                else debug("profile", String.format("option %s=%s", name, result));
+                else
+                    debug("profile", String.format("option %s=%s", name, result));
 
                 return result;
             }
 
                 return result;
             }
-            else return default_value;
+            else
+                return default_value;
         }
         catch (Exception e) {
             debug("db", "returning default value for " + name, e);
         }
         catch (Exception e) {
             debug("db", "returning default value for " + name, e);
@@ -335,7 +339,8 @@ public final class MobileLedgerProfile {
     public LedgerAccount loadAccount(SQLiteDatabase db, String accName) {
         LedgerAccount acc = tryLoadAccount(db, accName);
 
     public LedgerAccount loadAccount(SQLiteDatabase db, String accName) {
         LedgerAccount acc = tryLoadAccount(db, accName);
 
-        if (acc == null) throw new RuntimeException("Unable to load account with name " + accName);
+        if (acc == null)
+            throw new RuntimeException("Unable to load account with name " + accName);
 
         return acc;
     }
 
         return acc;
     }
@@ -377,7 +382,8 @@ public final class MobileLedgerProfile {
         return this.themeId;
     }
     public void setThemeId(Object o) {
         return this.themeId;
     }
     public void setThemeId(Object o) {
-        setThemeId(Integer.valueOf(String.valueOf(o)).intValue());
+        setThemeId(Integer.valueOf(String.valueOf(o))
+                          .intValue());
     }
     public void setThemeId(int themeId) {
 //        debug("profile", String.format("Profile.setThemeId(%d) called", themeId));
     }
     public void setThemeId(int themeId) {
 //        debug("profile", String.format("Profile.setThemeId(%d) called", themeId));
index 8ccb6c4ef972d75cbb04b40f46b45b902b954b3a..ecaca2f2ddf04f1c1e89caf0cadb1d3bd51fe180 100644 (file)
@@ -55,8 +55,8 @@ public class DatePickerFragment extends AppCompatDialogFragment
         int month = c.get(GregorianCalendar.MONTH);
         int day = c.get(GregorianCalendar.DAY_OF_MONTH);
         long todayStamp = c.getTimeInMillis();
         int month = c.get(GregorianCalendar.MONTH);
         int day = c.get(GregorianCalendar.DAY_OF_MONTH);
         long todayStamp = c.getTimeInMillis();
-        TextView date =
-                Objects.requireNonNull(getActivity()).findViewById(R.id.new_transaction_date);
+        TextView date = Objects.requireNonNull(getActivity())
+                               .findViewById(R.id.new_transaction_date);
 
         CharSequence present = date.getText();
 
 
         CharSequence present = date.getText();
 
index 667c0452b253ad667c05115a8d636eafb7ce92f2..9ee32ea728f683ca307ba695c3716071ef441e38 100644 (file)
@@ -248,7 +248,8 @@ class NewTransactionItemHolder extends RecyclerView.ViewHolder
                                 focused = tvAccount.requestFocus();
                                 tvAccount.dismissDropDown();
                                 if (focused)
                                 focused = tvAccount.requestFocus();
                                 tvAccount.dismissDropDown();
                                 if (focused)
-                                    Misc.showSoftKeyboard((NewTransactionActivity) tvAccount.getContext());
+                                    Misc.showSoftKeyboard(
+                                            (NewTransactionActivity) tvAccount.getContext());
                             }
                         }
 
                             }
                         }
 
index 4c547488ee800acd5ccf6c9fa4357aa0b5d06405..3f74bfa2f967c0764cacef978cb8e384d7668cc0 100644 (file)
@@ -118,7 +118,8 @@ public class ProfileDetailFragment extends Fragment implements HueRingDialog.Hue
                         String.format("[fragment] removing profile %s", mProfile.getUuid()));
                 mProfile.removeFromDB();
                 ArrayList<MobileLedgerProfile> oldList = Data.profiles.getValue();
                         String.format("[fragment] removing profile %s", mProfile.getUuid()));
                 mProfile.removeFromDB();
                 ArrayList<MobileLedgerProfile> oldList = Data.profiles.getValue();
-                if (oldList == null) throw new AssertionError();
+                if (oldList == null)
+                    throw new AssertionError();
                 ArrayList<MobileLedgerProfile> newList = new ArrayList<>(oldList);
                 newList.remove(mProfile);
                 Data.profiles.setValue(newList);
                 ArrayList<MobileLedgerProfile> newList = new ArrayList<>(oldList);
                 newList.remove(mProfile);
                 Data.profiles.setValue(newList);
@@ -128,14 +129,15 @@ public class ProfileDetailFragment extends Fragment implements HueRingDialog.Hue
                 }
 
                 final FragmentActivity activity = getActivity();
                 }
 
                 final FragmentActivity activity = getActivity();
-                if (activity != null) activity.finish();
+                if (activity != null)
+                    activity.finish();
             });
             builder.show();
             return false;
         });
         final ArrayList<MobileLedgerProfile> profiles = Data.profiles.getValue();
             });
             builder.show();
             return false;
         });
         final ArrayList<MobileLedgerProfile> profiles = Data.profiles.getValue();
-        menuDeleteProfile
-                .setVisible((mProfile != null) && (profiles != null) && (profiles.size() > 1));
+        menuDeleteProfile.setVisible(
+                (mProfile != null) && (profiles != null) && (profiles.size() > 1));
 
         if (BuildConfig.DEBUG) {
             final MenuItem menuWipeProfileData = menu.findItem(R.id.menuWipeData);
 
         if (BuildConfig.DEBUG) {
             final MenuItem menuWipeProfileData = menu.findItem(R.id.menuWipeData);
@@ -146,20 +148,24 @@ public class ProfileDetailFragment extends Fragment implements HueRingDialog.Hue
     private boolean onWipeDataMenuClicked() {
         // this is a development option, so no confirmation
         mProfile.wipeAllData();
     private boolean onWipeDataMenuClicked() {
         // this is a development option, so no confirmation
         mProfile.wipeAllData();
-        if (mProfile.equals(Data.profile.getValue())) triggerProfileChange();
+        if (mProfile.equals(Data.profile.getValue()))
+            triggerProfileChange();
         return true;
     }
     private void triggerProfileChange() {
         int index = Data.getProfileIndex(mProfile);
         MobileLedgerProfile newProfile = new MobileLedgerProfile(mProfile);
         final ArrayList<MobileLedgerProfile> profiles = Data.profiles.getValue();
         return true;
     }
     private void triggerProfileChange() {
         int index = Data.getProfileIndex(mProfile);
         MobileLedgerProfile newProfile = new MobileLedgerProfile(mProfile);
         final ArrayList<MobileLedgerProfile> profiles = Data.profiles.getValue();
-        if (profiles == null) throw new AssertionError();
+        if (profiles == null)
+            throw new AssertionError();
         profiles.set(index, newProfile);
 
         ProfilesRecyclerViewAdapter prva = ProfilesRecyclerViewAdapter.getInstance();
         profiles.set(index, newProfile);
 
         ProfilesRecyclerViewAdapter prva = ProfilesRecyclerViewAdapter.getInstance();
-        if (prva != null) prva.notifyItemChanged(index);
+        if (prva != null)
+            prva.notifyItemChanged(index);
 
 
-        if (mProfile.equals(Data.profile.getValue())) Data.profile.setValue(newProfile);
+        if (mProfile.equals(Data.profile.getValue()))
+            Data.profile.setValue(newProfile);
     }
     @Override
     public void onCreate(Bundle savedInstanceState) {
     }
     @Override
     public void onCreate(Bundle savedInstanceState) {
@@ -172,11 +178,14 @@ public class ProfileDetailFragment extends Fragment implements HueRingDialog.Hue
                 mProfile = profiles.get(index);
 
             Activity activity = this.getActivity();
                 mProfile = profiles.get(index);
 
             Activity activity = this.getActivity();
-            if (activity == null) throw new AssertionError();
+            if (activity == null)
+                throw new AssertionError();
             CollapsingToolbarLayout appBarLayout = activity.findViewById(R.id.toolbar_layout);
             if (appBarLayout != null) {
             CollapsingToolbarLayout appBarLayout = activity.findViewById(R.id.toolbar_layout);
             if (appBarLayout != null) {
-                if (mProfile != null) appBarLayout.setTitle(mProfile.getName());
-                else appBarLayout.setTitle(getResources().getString(R.string.new_profile_title));
+                if (mProfile != null)
+                    appBarLayout.setTitle(mProfile.getName());
+                else
+                    appBarLayout.setTitle(getResources().getString(R.string.new_profile_title));
             }
         }
     }
             }
         }
     }
@@ -184,7 +193,8 @@ public class ProfileDetailFragment extends Fragment implements HueRingDialog.Hue
     public void onActivityCreated(@Nullable Bundle savedInstanceState) {
         super.onActivityCreated(savedInstanceState);
         Activity context = getActivity();
     public void onActivityCreated(@Nullable Bundle savedInstanceState) {
         super.onActivityCreated(savedInstanceState);
         Activity context = getActivity();
-        if (context == null) return;
+        if (context == null)
+            return;
 
         FloatingActionButton fab = context.findViewById(R.id.fab);
         fab.setOnClickListener(v -> onSaveFabClicked());
 
         FloatingActionButton fab = context.findViewById(R.id.fab);
         fab.setOnClickListener(v -> onSaveFabClicked());
@@ -192,7 +202,8 @@ public class ProfileDetailFragment extends Fragment implements HueRingDialog.Hue
         profileName.requestFocus();
     }
     private void onSaveFabClicked() {
         profileName.requestFocus();
     }
     private void onSaveFabClicked() {
-        if (!checkValidity()) return;
+        if (!checkValidity())
+            return;
 
         if (mProfile != null) {
             updateProfileFromUI();
 
         if (mProfile != null) {
             updateProfileFromUI();
@@ -206,18 +217,21 @@ public class ProfileDetailFragment extends Fragment implements HueRingDialog.Hue
             updateProfileFromUI();
             mProfile.storeInDB();
             final ArrayList<MobileLedgerProfile> profiles = Data.profiles.getValue();
             updateProfileFromUI();
             mProfile.storeInDB();
             final ArrayList<MobileLedgerProfile> profiles = Data.profiles.getValue();
-            if (profiles == null) throw new AssertionError();
+            if (profiles == null)
+                throw new AssertionError();
             ArrayList<MobileLedgerProfile> newList = new ArrayList<>(profiles);
             newList.add(mProfile);
             Data.profiles.setValue(newList);
             MobileLedgerProfile.storeProfilesOrder();
 
             // first profile ever?
             ArrayList<MobileLedgerProfile> newList = new ArrayList<>(profiles);
             newList.add(mProfile);
             Data.profiles.setValue(newList);
             MobileLedgerProfile.storeProfilesOrder();
 
             // first profile ever?
-            if (newList.size() == 1) Data.profile.setValue(mProfile);
+            if (newList.size() == 1)
+                Data.profile.setValue(mProfile);
         }
 
         Activity activity = getActivity();
         }
 
         Activity activity = getActivity();
-        if (activity != null) activity.finish();
+        if (activity != null)
+            activity.finish();
     }
     private void updateProfileFromUI() {
         mProfile.setName(profileName.getText());
     }
     private void updateProfileFromUI() {
         mProfile.setName(profileName.getText());
@@ -290,7 +304,8 @@ public class ProfileDetailFragment extends Fragment implements HueRingDialog.Hue
         useAuthentication.setOnCheckedChangeListener((buttonView, isChecked) -> {
             debug("profiles", isChecked ? "auth enabled " : "auth disabled");
             authParams.setVisibility(isChecked ? View.VISIBLE : View.GONE);
         useAuthentication.setOnCheckedChangeListener((buttonView, isChecked) -> {
             debug("profiles", isChecked ? "auth enabled " : "auth disabled");
             authParams.setVisibility(isChecked ? View.VISIBLE : View.GONE);
-            if (isChecked) userName.requestFocus();
+            if (isChecked)
+                userName.requestFocus();
             checkInsecureSchemeWithAuth();
         });
 
             checkInsecureSchemeWithAuth();
         });
 
@@ -366,7 +381,8 @@ public class ProfileDetailFragment extends Fragment implements HueRingDialog.Hue
     private boolean checkUrlValidity() {
         boolean valid = true;
 
     private boolean checkUrlValidity() {
         boolean valid = true;
 
-        String val = String.valueOf(url.getText()).trim();
+        String val = String.valueOf(url.getText())
+                           .trim();
         if (val.isEmpty()) {
             valid = false;
             urlLayout.setError(getResources().getText(R.string.err_profile_url_empty));
         if (val.isEmpty()) {
             valid = false;
             urlLayout.setError(getResources().getText(R.string.err_profile_url_empty));
@@ -374,8 +390,10 @@ public class ProfileDetailFragment extends Fragment implements HueRingDialog.Hue
         try {
             URL url = new URL(val);
             String host = url.getHost();
         try {
             URL url = new URL(val);
             String host = url.getHost();
-            if (host == null || host.isEmpty()) throw new MalformedURLException("Missing host");
-            String protocol = url.getProtocol().toUpperCase();
+            if (host == null || host.isEmpty())
+                throw new MalformedURLException("Missing host");
+            String protocol = url.getProtocol()
+                                 .toUpperCase();
             if (!protocol.equals("HTTP") && !protocol.equals("HTTPS")) {
                 valid = false;
                 urlLayout.setError(getResources().getText(R.string.err_invalid_url));
             if (!protocol.equals("HTTP") && !protocol.equals("HTTPS")) {
                 valid = false;
                 urlLayout.setError(getResources().getText(R.string.err_invalid_url));
@@ -392,16 +410,21 @@ public class ProfileDetailFragment extends Fragment implements HueRingDialog.Hue
         boolean showWarning = false;
 
         if (useAuthentication.isChecked()) {
         boolean showWarning = false;
 
         if (useAuthentication.isChecked()) {
-            String urlText = url.getText().toString();
-            if (urlText.startsWith("http") && !urlText.startsWith("https")) showWarning = true;
+            String urlText = url.getText()
+                                .toString();
+            if (urlText.startsWith("http") && !urlText.startsWith("https"))
+                showWarning = true;
         }
 
         }
 
-        if (showWarning) insecureWarningText.setVisibility(View.VISIBLE);
-        else insecureWarningText.setVisibility(View.GONE);
+        if (showWarning)
+            insecureWarningText.setVisibility(View.VISIBLE);
+        else
+            insecureWarningText.setVisibility(View.GONE);
     }
     private void hookClearErrorOnFocusListener(TextView view, TextInputLayout layout) {
         view.setOnFocusChangeListener((v, hasFocus) -> {
     }
     private void hookClearErrorOnFocusListener(TextView view, TextInputLayout layout) {
         view.setOnFocusChangeListener((v, hasFocus) -> {
-            if (hasFocus) layout.setError(null);
+            if (hasFocus)
+                layout.setError(null);
         });
         view.addTextChangedListener(new TextWatcher() {
             @Override
         });
         view.addTextChangedListener(new TextWatcher() {
             @Override
@@ -420,26 +443,33 @@ public class ProfileDetailFragment extends Fragment implements HueRingDialog.Hue
         boolean valid = true;
 
         String val = String.valueOf(profileName.getText());
         boolean valid = true;
 
         String val = String.valueOf(profileName.getText());
-        if (val.trim().isEmpty()) {
+        if (val.trim()
+               .isEmpty())
+        {
             valid = false;
             profileNameLayout.setError(getResources().getText(R.string.err_profile_name_empty));
         }
 
             valid = false;
             profileNameLayout.setError(getResources().getText(R.string.err_profile_name_empty));
         }
 
-        if (!checkUrlValidity()) valid = false;
+        if (!checkUrlValidity())
+            valid = false;
 
         if (useAuthentication.isChecked()) {
             val = String.valueOf(userName.getText());
 
         if (useAuthentication.isChecked()) {
             val = String.valueOf(userName.getText());
-            if (val.trim().isEmpty()) {
+            if (val.trim()
+                   .isEmpty())
+            {
                 valid = false;
                 valid = false;
-                userNameLayout
-                        .setError(getResources().getText(R.string.err_profile_user_name_empty));
+                userNameLayout.setError(
+                        getResources().getText(R.string.err_profile_user_name_empty));
             }
 
             val = String.valueOf(password.getText());
             }
 
             val = String.valueOf(password.getText());
-            if (val.trim().isEmpty()) {
+            if (val.trim()
+                   .isEmpty())
+            {
                 valid = false;
                 valid = false;
-                passwordLayout
-                        .setError(getResources().getText(R.string.err_profile_password_empty));
+                passwordLayout.setError(
+                        getResources().getText(R.string.err_profile_password_empty));
             }
         }
 
             }
         }
 
index 4c8bba39bcf7ed4c6bec1624c01cc96a9f738d39..d76fdab5a2282781a88f355a5d87a1b78e556962 100644 (file)
@@ -16,8 +16,8 @@
   -->
 
 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
   -->
 
 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
-    xmlns:tools="http://schemas.android.com/tools"
     xmlns:app="http://schemas.android.com/apk/res-auto"
     xmlns:app="http://schemas.android.com/apk/res-auto"
+    xmlns:tools="http://schemas.android.com/tools"
     android:id="@+id/profile_detail"
     style="?android:attr/textAppearanceLarge"
     android:layout_width="match_parent"
     android:id="@+id/profile_detail"
     style="?android:attr/textAppearanceLarge"
     android:layout_width="match_parent"
             android:id="@+id/auth_params"
             android:layout_width="match_parent"
             android:layout_height="wrap_content"
             android:id="@+id/auth_params"
             android:layout_width="match_parent"
             android:layout_height="wrap_content"
+            android:animateLayoutChanges="true"
             android:orientation="vertical"
             android:paddingStart="8dp"
             android:orientation="vertical"
             android:paddingStart="8dp"
-            android:animateLayoutChanges="true"
             tools:ignore="RtlSymmetry">
 
             <LinearLayout
             tools:ignore="RtlSymmetry">
 
             <LinearLayout