Android中的线性布局始终可滚动

时间:2013-05-16 14:18:39

标签: android layout scrollable

即使我的布局中只有一个TextView,如何使垂直线性布局始终可滚动?

  • 当我向上滚动时,我希望它滚动并在底部显示一个空白区域。
  • 当我向下滚动时,我希望它在我的视图顶部显示一个空白。

这是我的代码:

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/ScrollView1"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content">

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">

        <TextView
             android:id="@+id/addCategory"
             android:layout_width="wrap_content"
             android:layout_height="wrap_content"
             android:text="Scrollable view"/>
    </LinearLayout>
</ScrollView>

1 个答案:

答案 0 :(得分:0)

你不能通过android提供的任何默认API来做,但是以编程方式你正在寻找这个 -

Horizontal Pager.

这个问题已在这里得到解答 -

Android horizontal scrollview behave like iphone scroll