如何在 Android Studio 预览中看到 ScrollView 的不可见面?

How to see ScrollView's invisible side at Android Studio Preview?

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

有没有看到那一面的选项?

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

如何解决?

使用下面的代码禁用滚动条;

<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 -->
 />

在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 -->
>

试试这个,你可以使用 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

中禁用滚动时的蓝色阴影
android:overScrollMode="never"

或在滚动视图xml

中使用它来改变滚动时的蓝色阴影
android:cacheColorHint="#ff00"