如何在Android應用中實現滾動和滾動條? 我是新來的android開發建議除了android開發者網站以外的一些網站快速學習。Android滾動視圖
-2
A
回答
0
很簡單,打開你的Android Studio中,創建新項目(空白項目)。然後在res/layout/activity_main.xml
替換此代碼:
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="test1" />
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="test2" />
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="test3" />
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="test4" />
.
.
.
.
.
<!-- something you want to display -->
</LinearLayout>
</ScrollView>
對於學習Android的,我建議這個網站,它有很多的乾淨清澈的例子讓你嘗試(它的舊的,但對我來說是很好的初學者):
又一次谷歌是你最好的朋友。
0
這是一個簡單的任務,您可以通過使用ScrollView
來實現此目的。把Layout
放在一邊ScrollView
,你就可以走了。有一件事ScrollView
只能包含一個ChildView。
實施例:
<ScrollView
android:width="match_parent"
android:height="match_parent" >
<LinearLayout
....>
.
.
.
</LinearLayout>
</ScrollView>
2
這裏是一個垂直滾動視圖的示例:
<ScrollView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/scrollView"
android:layout_alignParentTop="true"
android:layout_alignParentStart="true">
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="New Button"
android:id="@+id/button"/>
...
</LinearLayout>
</ScrollView>
和水平滾動視圖:
<HorizontalScrollView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/horizontalScrollView"
android:layout_below="@+id/scrollView"
android:layout_alignParentStart="true">
<LinearLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="New Button"
android:id="@+id/button2"/>
...
</LinearLayout>
</HorizontalScrollView>
相關問題
- 1. 滾動視圖內滾動視圖android
- 2. Android滾動視圖
- 3. Android的滾動視圖自動滾動
- 4. Android:滾動圖像視圖
- 5. Android的滾動視圖不滾動
- 6. Android:滾動視圖不再滾動
- 7. 滾動視圖不滾動android
- 8. TextView在滾動視圖不滾動 - Android
- 9. 的Android滾動視圖不滾動
- 10. 在Android中滾動視圖
- 11. 滾動視圖問題Android
- 12. Android滾動視圖太長
- 13. Android - 滾動視圖問題
- 14. Android Recycler視圖滾動條
- 15. Android XML滾動視圖
- 16. android水平滾動視圖
- 17. 在android中滾動視圖
- 18. Android - 操作滾動視圖
- 19. 滾動視圖Android故障
- 20. ImageView內滾動視圖(Android)
- 21. 多滾動視圖android
- 22. Android:關於滾動視圖
- 23. Android - 無法滾動視圖
- 24. Android網格視圖滾動
- 25. Android嵌套滾動視圖
- 26. 在android問題的滾動視圖內滾動視圖
- 27. 更改滾動視圖在android的滾動視圖的顏色
- 28. android-如何把滾動視圖下滾動視圖
- 29. Android:滾動滾動視圖內的線性視圖
- 30. 在滾動視圖時滾動視圖內的android動畫視圖
問題要求我們推薦或找到一本書,工具,軟件庫,教程或其他非本地資源,因爲它們傾向於吸引自以爲是的答案和垃圾郵件,所以不適合堆棧溢出。相反,請描述問題以及到目前爲止解決問題所做的工作。 – Lexi
在youtube上搜索。 –