A view that shows items in a center-locked, horizontally scrolling list. The default values for the Gallery assume you will be using android.R.styleable.Theme_galleryItemBackground as the background for each View given to the Gallery from the Adapter. If you are not doing this, you may need to adjust some Gallery properties, such as the spacing. Views given to the Gallery should use Gallery.LayoutParams as their layout parameters type.
时间: 2024-04-27 22:23:18 浏览: 72
android Gallery与ScrollView
5星 · 资源好评率100%
这段话是对Android的Gallery控件的说明。Gallery控件是一个已经被废弃的控件,用于在横向滚动视图中显示一组图片或其他视图。其中的这段话解释了使用Gallery控件时需要注意的一些属性和布局参数。
首先,Gallery控件是一个横向滚动的列表控件,它会将其中的每个项居中显示。默认情况下,Gallery控件会使用`android.R.styleable.Theme_galleryItemBackground`属性指定的背景来渲染每个项。如果你不使用这个属性来指定背景,可能需要调整一些Gallery的属性,比如间距等。
其次,给Gallery控件提供的每个视图应该使用`Gallery.LayoutParams`作为它们的布局参数类型。这是因为Gallery控件需要知道每个视图的大小和位置,以便正确地布局它们。
需要注意的是,Gallery控件在Android 4.1(API 16)中已被废弃,不再推荐使用。建议使用RecyclerView或ViewPager2等更现代的控件来实现类似的横向滚动列表效果。
阅读全文