/*** Copyright (c) 2013-2016 CommonsWare, LLC Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0. Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. Covered in detail in the book _The Busy Coder's Guide to Android Development_ https://commonsware.com/Android */ package com.commonsware.android.video.list; import android.app.LoaderManager; import android.content.ContentUris; import android.content.CursorLoader; import android.content.Loader; import android.database.Cursor; import android.net.Uri; import android.os.Bundle; import android.provider.MediaStore; import android.view.View; import android.widget.CursorAdapter; import android.widget.ImageView; import android.widget.ListView; import android.widget.SimpleCursorAdapter; import com.squareup.picasso.Picasso; public class VideosFragment extends ContractListFragment<VideosFragment.Contract> implements LoaderManager.LoaderCallbacks<Cursor>, SimpleCursorAdapter.ViewBinder { @Override public void onViewCreated(View view, Bundle savedInstanceState) { super.onViewCreated(view, savedInstanceState); String[] from= { MediaStore.Video.Media.TITLE, MediaStore.Video.Media._ID }; int[] to= { android.R.id.text1, R.id.thumbnail }; SimpleCursorAdapter adapter= new SimpleCursorAdapter(getActivity(), R.layout.row, null, from, to, 0); adapter.setViewBinder(this); setListAdapter(adapter); getLoaderManager().initLoader(0, null, this); } @Override public void onListItemClick(ListView l, View v, int position, long id) { CursorAdapter adapter=(CursorAdapter)getListAdapter(); Cursor c=(Cursor)adapter.getItem(position); int uriColumn=c.getColumnIndex(MediaStore.Video.Media.DATA); int mimeTypeColumn= c.getColumnIndex(MediaStore.Video.Media.MIME_TYPE); getContract().onVideoSelected(c.getString(uriColumn), c.getString(mimeTypeColumn)); } @Override public Loader<Cursor> onCreateLoader(int arg0, Bundle arg1) { return(new CursorLoader( getActivity(), MediaStore.Video.Media.EXTERNAL_CONTENT_URI, null, null, null, MediaStore.Video.Media.TITLE)); } @Override public void onLoadFinished(Loader<Cursor> loader, Cursor c) { ((CursorAdapter)getListAdapter()).swapCursor(c); } @Override public void onLoaderReset(Loader<Cursor> loader) { ((CursorAdapter)getListAdapter()).swapCursor(null); } @Override public boolean setViewValue(View v, Cursor c, int column) { if (column == c.getColumnIndex(MediaStore.Video.Media._ID)) { Uri video= ContentUris.withAppendedId( MediaStore.Video.Media.EXTERNAL_CONTENT_URI, c.getInt(column)); Picasso.with(getActivity()).load(video.toString()) .fit().centerCrop() .placeholder(R.drawable.ic_media_video_poster) .into((ImageView)v); return(true); } return(false); } interface Contract { void onVideoSelected(String uri, String mimeType); } }