对不起,我是安卓新手
由于我的内容很大,我将创建一个ScrollView
. 通过这种方式,我在 1 个文件(我们称之为FirstLayout.xml)中创建了我的部分内容,而另一部分 则为SeconedLayout.xml。现在我将在一个XML文件中调用它们。(Parent.xml)
但问题是,我不知道,我应该如何在ScrollView中调用它们?
这是代码
FirstLayout.xml
<AbsoluteLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
.
.
.
</AbsoluteLayout>
SecondLayout.xml 是:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
...
</LinearLayout>
父.xml
可见的
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/scroller"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:fillViewport="true" >
<!-- Call FirstLayout -->
<!-- Call SecondLayout -->
</ScrollView>