サンプル アプリケーション用にカスタム レイアウトを作成したいと考えています。以前はユーザー インターフェイスに xml レイアウトを使用していましたが、カスタムを使用して (xml レイアウトを使用せずに) アプリケーションを作成したいと考えています。以下のコードを xml で使用しましたが、この xml レイアウトを実装できないカスタム コードに変更しました (これを行う方法がわかりません)。アクティビティにこのレイアウト コードを記述するにはどうすればよいですか? これを解決するために私を助けてください。前もって感謝します。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<ScrollView
android:id="@+id/webviewscroll"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<LinearLayout
android:id="@+id/webviewlinear"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<RelativeLayout
android:id="@+id/webviewframe1"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<WebView
android:id="@+id/webview1"
android:layout_width="fill_parent"
android:layout_height="350dp"
android:layout_alignParentBottom="true"
android:layout_marginBottom="10dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginTop="20dp" >
</WebView>
<ImageView
android:id="@+id/webviewimage1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/one" >
</ImageView>
</RelativeLayout>
<RelativeLayout
android:id="@+id/webviewframe2"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<WebView
android:id="@+id/webview2"
android:layout_width="fill_parent"
android:layout_height="350dp"
android:layout_alignParentBottom="true"
android:layout_marginBottom="10dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginTop="20dp" >
</WebView>
<ImageView
android:id="@+id/webviewimage2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/two" >
</ImageView>
</RelativeLayout>
</LinearLayout>
</ScrollView>
</LinearLayout>