1<ViewStub
2 android:id="@+id/layout_stub"
3 android:inflatedId="@+id/message_layout"
4 android:layout_width="match_parent"
5 android:layout_height="match_parent"
6 android:layout_weight="0.75" />
1ViewStub stub = (ViewStub) findViewById(R.id.layout_stub);
2stub.setLayoutResource(R.layout.whatever_layout_you_want);
3View inflated = stub.inflate();