我正在开发一个应用程序让用户在资源文件夹(如照片应用程序)中的许多照片之间滑动。如何完成此操作或从哪里开始? 感谢
修改
我使用了ViewPager
,虽然我只加载了少量图像,但速度慢而且不顺畅!
这是我用于在Fragment
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.activity_page, container, false);
String index = getArguments().getString(ARG_SECTION_NUMBER);
ImageView callImage = (ImageView) rootView.findViewById(R.id.imageView);
int resID = getActivity().getResources().getIdentifier(index, "drawable", getActivity().getPackageName());
callImage.setImageResource(resID2);
return rootView;
}
答案 0 :(得分:0)
找时间查看开源API,Google照片有一个,但目前我不记得如何调用它。
最好使用经过试验和测试,而不是浪费时间从头开始构建。