xml を必要とせずに 1 つの xml コードを動的に作成しようとしています。Javaコードのみを使用しています。このxmlコンテンツのjavacodeを作成する方法を教えてください。リソースで main.xml を使用したくありません。
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/applicationframe"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#FFEEEEEE">
<com.pdfplugin.QScrollView
android:id="@+id/scrollview"
android:layout_gravity="center"
android:background="#FFEEEEEE"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<LinearLayout
android:id="@+id/pagepane"
android:background="#FFEEEEEE"
android:gravity="center_horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
</LinearLayout>
</com.pdfplugin.QScrollView>
<ImageView
android:id="@+id/imgclose"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="top|right"
android:layout_marginRight="10dp"
android:layout_marginTop="10dp"
android:src="@drawable/readclose" />
</FrameLayout>