如何让我的屏幕滚动?
如何使用ScrollView?在我的活动中,有一张图片和文字,我需要向下或向上移动屏幕滚动。
答案 0 :(得分:0)
ScrollView
XML资源相当容易使用且功能强大。只需使用ScrollView
标记将您想要滚动的任何内容包装在XML中,其余内容将由您处理。简单的例子:
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scrollbars="vertical"
android:background="@color/colorPrimary"
android:fillViewport="true">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/yourID"
android:layout_weight="1" />
...
</LinearLayout></ScrollView>
此示例显示LinearLayout
填充了您需要的任何内容(本例中为TextView),必要时将在屏幕上滚动。