mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-21 23:32:51 +00:00
Apply insets to full screen message view
This commit is contained in:
parent
f9b2080652
commit
692b02cac8
1 changed files with 35 additions and 0 deletions
|
@ -31,6 +31,9 @@ import android.webkit.WebSettings;
|
|||
import android.webkit.WebView;
|
||||
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.core.graphics.Insets;
|
||||
import androidx.core.view.ViewCompat;
|
||||
import androidx.core.view.WindowInsetsCompat;
|
||||
import androidx.fragment.app.DialogFragment;
|
||||
import androidx.webkit.WebSettingsCompat;
|
||||
import androidx.webkit.WebViewFeature;
|
||||
|
@ -63,6 +66,38 @@ public class FragmentDialogOpenFull extends FragmentDialogBase {
|
|||
final Context context = getContext();
|
||||
|
||||
View view = inflater.inflate(R.layout.fragment_open_full, container, false);
|
||||
|
||||
ViewCompat.setOnApplyWindowInsetsListener(view, (v, windowInsets) -> {
|
||||
try {
|
||||
Insets insets = windowInsets.getInsets(WindowInsetsCompat.Type.systemBars());
|
||||
|
||||
boolean changed = false;
|
||||
ViewGroup.MarginLayoutParams mlp = (ViewGroup.MarginLayoutParams) v.getLayoutParams();
|
||||
if (mlp.leftMargin != insets.left) {
|
||||
changed = true;
|
||||
mlp.leftMargin = insets.left;
|
||||
}
|
||||
if (mlp.topMargin != insets.top) {
|
||||
changed = true;
|
||||
mlp.topMargin = insets.top;
|
||||
}
|
||||
if (mlp.rightMargin != insets.right) {
|
||||
changed = true;
|
||||
mlp.rightMargin = insets.right;
|
||||
}
|
||||
if (mlp.bottomMargin != insets.bottom) {
|
||||
changed = true;
|
||||
mlp.bottomMargin = insets.bottom;
|
||||
}
|
||||
if (changed)
|
||||
v.setLayoutParams(mlp);
|
||||
} catch (Throwable ex) {
|
||||
Log.e(ex);
|
||||
}
|
||||
|
||||
return WindowInsetsCompat.CONSUMED;
|
||||
});
|
||||
|
||||
WebView wv = view.findViewById(R.id.wv);
|
||||
|
||||
WebSettings settings = wv.getSettings();
|
||||
|
|
Loading…
Reference in a new issue