我檢查你的代碼,這裏是modification in your buttons layout
:
<RelativeLayout
android:id="@+id/alarm_details_buttons_layout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true" >
<Button
android:id="@+id/alarm_details_return_to_list_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="your text here"
android:textSize="15sp" />
<Button
android:id="@+id/alarm_details_update_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/alarm_details_return_to_list_button"
android:state_enabled="false"
android:text="your text here"
android:textSize="15sp" />
</RelativeLayout>
請在http://www.pastie.org上發佈代碼。 pastebin被封鎖 – Venky
@Venky完成 - 請參閱新的鏈接。 – barry
我猜在TextField「我的描述」下面沒有更多內容了吧?然後,針對您的問題的解決方案是,按鈕與視圖底部對齊,ScrollView位於按鈕上方,並且因爲它不需要所有可用空間(包裝內容),所以它將自己對齊到底部並且在頂部留下空白區域。如果您將ScrollView對齊到頂端,使其爲fillParent並將按鈕RelativeLayout對齊到滾動視圖之下,它應該按預期工作 – banzai86