ScrollView在主布局中被剪切

时间:2015-04-05 15:11:28

标签: java android android-layout android-linearlayout android-scrollview

我的主线性布局中有一个滚动视图,如下所示:

 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:bootstrapbutton="http://schemas.android.com/apk/res-auto"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:gravity="center"
        android:padding="8dp">

<ScrollView
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="1"
    android:scrollbars="none">
            <LinearLayout
                android:orientation="vertical"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:gravity="center">

                       ---content---

              </LinearLayout>
          </ScrollVIew>
    </LinearLayout>

当我滚动textview&#39;全名&#39;切割后显示不正确。

enter image description here

我搜索了所有解决方案,并尝试了以下两种方法:

android:fillViewport="true"
android:clipToPadding="false"

但它没有奏效。对此有何解决方案?

1 个答案:

答案 0 :(得分:2)

现在我在Google Plus的Android开发者官方页面上找到了答案:

我需要设置android:scrollbarStyle="outsideOverlay"android:clipToPadding="false"

这正是我的问题:https://plus.google.com/+AndroidDevelopers/posts/LpAA7q4jw9M