From 26900c7f73646a2cf9108f3114d8b95784dc0da2 Mon Sep 17 00:00:00 2001 From: M66B Date: Sat, 22 Sep 2018 07:51:54 +0000 Subject: [PATCH] Fixed account advanced scroll --- app/src/main/java/eu/faircode/email/FragmentAccount.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/src/main/java/eu/faircode/email/FragmentAccount.java b/app/src/main/java/eu/faircode/email/FragmentAccount.java index 283466d0..1ed9a2d7 100644 --- a/app/src/main/java/eu/faircode/email/FragmentAccount.java +++ b/app/src/main/java/eu/faircode/email/FragmentAccount.java @@ -54,6 +54,7 @@ import android.widget.ImageView; import android.widget.ProgressBar; import android.widget.ScrollView; import android.widget.Spinner; +import android.widget.TextView; import com.android.colorpicker.ColorPickerDialog; import com.android.colorpicker.ColorPickerSwatch; @@ -102,6 +103,7 @@ public class FragmentAccount extends FragmentEx { private TextInputLayout tilPassword; private Button btnAdvanced; + private TextView tvName; private EditText etName; private Button btnColor; private View vwColor; @@ -167,6 +169,7 @@ public class FragmentAccount extends FragmentEx { btnAdvanced = view.findViewById(R.id.btnAdvanced); etName = view.findViewById(R.id.etName); + tvName = view.findViewById(R.id.tvName); btnColor = view.findViewById(R.id.btnColor); vwColor = view.findViewById(R.id.vwColor); ibColorDefault = view.findViewById(R.id.ibColorDefault); @@ -321,7 +324,7 @@ public class FragmentAccount extends FragmentEx { new Handler().post(new Runnable() { @Override public void run() { - ((ScrollView) view).smoothScrollTo(0, btnCheck.getBottom()); + ((ScrollView) view).smoothScrollTo(0, tvName.getTop()); } }); }