mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-27 19:35:10 +01:00
Optimization
This commit is contained in:
@@ -158,8 +158,10 @@ abstract class ActivityBase extends AppCompatActivity implements SharedPreferenc
|
||||
try {
|
||||
view.setTranslationY(abh + offset);
|
||||
ViewGroup.MarginLayoutParams mlp = (ViewGroup.MarginLayoutParams) view.getLayoutParams();
|
||||
mlp.bottomMargin = abh + offset;
|
||||
view.setLayoutParams(mlp);
|
||||
if (mlp.bottomMargin != abh + offset) {
|
||||
mlp.bottomMargin = abh + offset;
|
||||
view.setLayoutParams(mlp);
|
||||
}
|
||||
} catch (Throwable ex) {
|
||||
Log.e(ex);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user