<!-- layout_to_load.xml -->
<LinearLayout
...
>
<!-- Your layout elements here -->
</LinearLayout>
AsyncLayoutInflater inflater = new AsyncLayoutInflater(this);
inflater.inflate(R.layout.layout_to_load, null, (view, resid, parent) -> {
setContentView(view);
});