我無法向下滾動屏幕以查看「已答覆者:」部分中的數據。我怎樣才能讓我的佈局可以滾動?如何讓我的佈局能夠向下滾動?
69
A
回答
154
只是包裝所有的一個ScrollView
內:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<!-- Here you put the rest of your current view-->
</ScrollView>
正如David Hedlund的說,ScrollView
可以只包含一個項目......所以如果你有這樣的事情:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<!-- bla bla bla-->
</LinearLayout>
您必須將其更改爲:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<!-- bla bla bla-->
</LinearLayout>
</ScrollView>
29
對於使用滾動視圖與相對佈局沿:
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:fillViewport="true"> <!--IMPORTANT otherwise backgrnd img. will not fill the whole screen -->
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:background="@drawable/background_image"
>
<!-- Bla Bla Bla i.e. Your Textviews/Buttons etc. -->
</RelativeLayout>
</ScrollView>
+0
什麼是視口標記 – 2016-10-13 18:04:02
0
如果你甚至沒有得到做什麼,上面寫的是後滾動.....
設置android:layout_height="250dp"
或者你可以說xdp
其中x
可以是任何數值。
1
只是包裝所有的滾動型
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.ruatech.sanikamal.justjava.MainActivity">
<!-- Here you put the rest of your current view-->
</ScrollView>
相關問題
- 1. 不能讓我的佈局滾動
- 2. 問題使滾動能夠設置整個佈局的滾動android
- 3. 當我向下滾動時,如何讓圖像移動?
- 4. 不能讓自動佈局
- 5. 如何讓網站向下滾動;因爲我的網站不會滾動
- 6. 縱向佈局不會橫向滾動
- 7. 在Recyclerview中向下滾動時,會使佈局向下/向外滑動?
- 8. 創建一個動態的向下滾動佈局Facebook風格
- 9. 如何讓ScrollPane使用動作向上或向下滾動?
- 10. 我如何能在另一頁上重定向向下滾動
- 11. 如何讓我的導航欄在滾動時上下滾動?
- 12. 對話框:如何讓對話內容能夠滾動?
- 13. 如何讓我的頁面能夠「滾動」並移回原始位置?
- 14. Swt LAyout:能夠佈局Ocntrol
- 15. 如何在自動佈局中向上移動滾動視圖
- 16. 我的畫布不讓我滾動python
- 17. 我怎樣才能讓多個div向上,向下,向右滾動
- 18. 滾動佈局
- 19. 當我向下滾動頁面或向上滾動頁面時,如何讓圖像向下滾動或向上滾動?
- 20. 如何讓我的頭部更小,如果我將向下滾動網頁
- 21. 試圖讓我的整個佈局滾動
- 22. 單頁佈局向上滾動
- 23. UIScrollView只能向下滾動
- 24. 如何讓佈局可以水平和垂直滾動?
- 25. 如何向下滾動 - jQuery
- 26. 如何讓滾動VIew向所有方向滾動?
- 27. 如何佈局VideoView旁邊的滾動列表下方的VideoView
- 28. 如何添加可滾動到由內佈局的佈局
- 29. 我的佈局背景滾動Android
- 30. 如何能夠讓圖像
+1內。快速提示:「ScrollView」只能包含一個孩子,所以如果你目前得到的是很多視圖,你需要將它們包裝在一個視圖組中(比如'LinearLayout') – 2010-09-29 06:23:06
謝謝@David Hedlund – 2010-09-29 06:35:50
如何解決我的問題,請幫助我http://stackoverflow.com/questions/38588702/why-my-scrollview-not-working-properly – Karthi 2016-07-26 13:41:36