1
A
回答
2
你只是形式創建單獨的佈局和佈局應該是在一個滾動視圖。在佈局外部,您可以放置三個按鈕。 例如:
<Relativelayout>
<ScrollView>
<LinearLayout>
...You can place form here
</Linearlayout>
</Scrollview>
...You can place three buttons here
</Relativelayout>
現在,當你運行,三個按鈕將保持靜態和形式將是滾動的。
1
我只是做了完全相同的事情。把下面的代碼放到一個線性佈局中,它應該做到這一點。
<ScrollView
android:layout_width="match_parent"
android:layout_height="1px"
android:layout_weight="1"
android:fillViewport="true"
>
<LinearLayout android:id="@+id/editors"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
/>
</ScrollView>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
style="@android:style/ButtonBar"
>
<Button android:id="@+id/btn_done"
android:layout_width="0dip"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/menu_done"
/>
<Button android:id="@+id/btn_discard"
android:layout_width="0dip"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/menu_doNotSave"
/>
相關問題
- 1. 在iOS中進行佈局 - 如何創建這樣的佈局?
- 2. 如何在Android上進行此佈局?
- 3. 如何在bootstrap中進行這樣的佈局?
- 4. 如何在Android上製作這樣的佈局?
- 5. 如何在xml中做這樣的佈局? Android的
- 6. 如何在android中創建這樣的佈局?
- 7. 如何創建這樣的佈局?
- 8. 如何實現這樣的佈局?
- 9. 如何創建這樣的佈局?
- 10. 如何創建這樣的佈局?
- 11. 如何編程這樣的佈局?
- 12. 實現該行佈局,看起來像這樣在Android的
- 13. Android設計的XML佈局走(如何得出這樣的)
- 14. 如何創建佈局這樣
- 15. 如何才能做到佈局這樣
- 16. 如何創建一個像這樣的android佈局?
- 17. 如何使這個佈局Android的XML
- 18. 如何爲Android列表視圖中的每一行創建這樣的佈局?(整蠱佈局:))
- 19. 如何在CSS中進行這種佈局?
- 20. 如何在Listview中這樣做這個佈局?
- 21. 我該如何在android中進行這樣的對話?
- 22. 如何在android中執行這種佈局
- 23. Android:如何使這樣的進度條
- 24. 如何在android上保存佈局?
- 25. 是否可以進行這種佈局?
- 26. android佈局:如何寫這個?
- 27. 如何實現這種Android佈局?
- 28. 如何設計這個佈局,android?
- 29. android如何實現這個佈局
- 30. 如何在Android中進行物理效果佈局?
好吧,我來試試, – Falmesino