use of com.yydcdut.noteplugin.adapter.FilePhotoAdapter in project PhotoNoter by yydcdut.
the class FilePhotoFragment method onActivityCreated.
@Override
public void onActivityCreated(@Nullable Bundle savedInstanceState) {
super.onActivityCreated(savedInstanceState);
TreeFile root = PhotoModel.getInstance().findByPath();
if (root != null) {
mRecyclerView.setAdapter(new FilePhotoAdapter(root));
} else {
YLog.i("yuyidong", "root == null");
}
}
Aggregations