<ScrollView
android:id="@+id/scroll"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_marginTop="15dp"
android:layout_marginRight="15dp"
android:layout_marginLeft="15dp"
android:layout_marginBottom="5dp"
android:background="@drawable/background">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/textt"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
style="@style/textstyle" />
</LinearLayout>
</ScrollView>
<Button
android:id="@+id/nextbutton"
style="@style/nextButton"
android:background="@drawable/next_button"
android:text="@string/xxx"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:gravity="center"
android:onClick="ethod" />
當textview很長時,滾動會佔據所有屏幕,並且沒有按鈕和其他內容顯示哪些應該在底部。Android ScrollView佔用所有屏幕
哪裏是你的按鈕? – 2012-07-25 06:49:09
下面滾動視圖 – 2012-07-25 06:49:45
把你完整的XML代碼 – waqaslam 2012-07-25 06:50:03