我在我的recyclerView中有imageview,我想首先加载图像,其中itemView当前在RecyclerView中可见,而不是任何其他图像(与Instagram相同)
这是加载图片的方式
recyclerView的onBindViewHolder:
import { provideRouter, RouterConfig } from '@angular/router';
import { AboutComponent } from './about/about.component';
import {AppComponent} from './app.component';
export const routes: RouterConfig = [
{
path: '',
redirectTo: '/about',
pathMatch: 'full'
},
{
path : 'about',
component : AboutComponent
}
];
export const APP_ROUTER_PROVIDERS = [
provideRouter(routes)
];
这是我的CarouselAdapter类:
CarouselAdapter mCustomPagerAdapter = new CarouselAdapter(getContext(), myImageUrl , itemViewposition);
mViewPager.setAdapter(mCustomPagerAdapter);
上面的方法是按索引的顺序加载图像,如果imageView在索引1那么它将在imageView的索引2之前加载
任何人都可以指导我如何达到预期的效果,它会对我有所帮助
P.S。 :如果上述信息不够明确,请告诉我我将修复它并使用UNIVERSAL IMAGE LOADER