1
<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>
內容大小的增加與上述layout.xml代碼滾動條時,線性佈局與ID的內容「linearLayout1」和「linearLayout2」增長的大小垂直地不會出現。滾動視圖不垂直生長時超出屏幕尺寸
請建議當「linearLayout1」和「linearLayout2」的大小超出父大小時,如何將滾動條放入我的活動視圖中。我希望單個滾動條用於完整的活動視圖,而不是爲「linearLayout1」和「linearLayout2」分隔滾動條。
全部layout_height wrap_content? – greenapps
你的意思是什麼*沒有出現*? – natario
@mvai線性佈局「linearLayout1」和「linearLayout2」永遠不會超出父高度,因此滾動條從不出現。 –