我希望为我的示例应用程序创建一个自定义布局。以前我为用户界面使用 xml 布局,但现在我希望使用自定义(不使用 xml 布局)创建应用程序。我在我的 xml 中使用了以下代码,但我将此 xml 布局更改为我无法实现的自定义代码(我不知道如何执行此操作)。如何在我的 Activity 中编写此布局代码?任何人都可以请你帮我解决这个问题。提前致谢。
<?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>