如何在Android Studio Preview中看到ScrollView的隐形边?

时间:2017-08-03 06:44:39

标签: android android-layout android-scrollview

enter image description here

我想在android工作室看到那一面。

有没有看到那边的选择?

enter image description here

并且,当LinearLayout到达那个不可见的一侧时,突然出现阴影。

如何解决这个问题?

3 个答案:

答案 0 :(得分:3)

试试这个你可以使用android:scrollbars="none"来禁用滚动棒;

 <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
  android:id="@+id/mainScroll"
  android:scrollbars="none" 
 />

或以编程方式设置

ScrollView.setVerticalScrollBarEnabled(false);
ScrollView.setHorizontalScrollBarEnabled(false);

或在滚动时禁用蓝色阴影在xml of scrollview中使用

android:overScrollMode="never"

或使用此选项在滚动时更改蓝色阴影在xml of scrollview中使用

android:cacheColorHint="#ff00"

答案 1 :(得分:2)

使用以下代码禁用滚动条;

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="fill_parent"
 android:layout_height="fill_parent"
 android:id="@+id/mainScroll"
 android:scrollbars="none" <!-- line to be added -->
 />

答案 2 :(得分:2)

在java中添加此代码

myScrollView.setVerticalScrollBarEnabled(false);
myScrollView.setHorizontalScrollBarEnabled(false);

在xml中将以下属性添加到ScrollView

android:scrollbars="none"

喜欢这个

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/mainScroll"
android:scrollbars="none" <!-- Add this line -->
>