<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/notesLayoutManagerScrollView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#fffaaa"
android:fillViewport="true"
tools:context="com.gp.app.professionalpa.layout.manager.NotesLayoutManagerActivity">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/notesLayoutManagerParentLinearLayout"
android:orientation="horizontal"
android:background="#ffffff"
android:baselineAligned="false">
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="0dip"
android:layout_height="match_parent"
android:orientation="vertical"
android:layout_weight="1"
android:layout_marginRight="1dip"
android:background="#ffffff">
</LinearLayout>
<LinearLayout
android:id="@+id/linearLayout2"
android:layout_width="0dip"
android:layout_height="match_parent"
android:orientation="vertical"
android:layout_weight="1"
android:layout_marginLeft="1dip"
android:background="#ffffff">
</LinearLayout>
</LinearLayout>
</ScrollView>
当带有ids“linearLayout1”和“linearLayout2”的线性布局的内容在垂直方向上增大时,带有上述layout.xml代码滚动条的不会出现。
请建议当“linearLayout1”和“linearLayout2”的大小超出父级大小时,如何在活动视图中显示滚动条。我希望单个滚动条用于我的完整活动视图,而不是单独的“linearLayout1”和“linearLayout2”的滚动条。