Android Studio ScrollView 仅显示可见图像
Android Studio ScrollView only show visible images
我创建了一个滚动浏览图像的滚动视图,但即使某些图像不可见,它仍然会滚动,就好像它们是可见的一样。有没有办法让滚动只滚动可见图像?
在图像视图中放入以下行 xml
android:visibility="gone"
完整代码如下
<ImageView
android:id="@+id/imageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:visibility="gone"
android:src="@drawable/image" />
您也可以通过编程来实现。
ImageView imageview = findViewById(R.id.imageView);
imageview.setVisibility(View.GONE);
希望对您有所帮助。
我创建了一个滚动浏览图像的滚动视图,但即使某些图像不可见,它仍然会滚动,就好像它们是可见的一样。有没有办法让滚动只滚动可见图像?
在图像视图中放入以下行 xml
android:visibility="gone"
完整代码如下
<ImageView
android:id="@+id/imageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:visibility="gone"
android:src="@drawable/image" />
您也可以通过编程来实现。
ImageView imageview = findViewById(R.id.imageView);
imageview.setVisibility(View.GONE);
希望对您有所帮助。