前言
關鍵字:Vitamio、VPlayer、Android播放器、Android影音、Android開源播放器
本章節把Android萬能播放器本地播放的主要功能(緩衝播放清單和A-Z快速查詢功能)完成,和播放組件關係不大,但用到一些實用的技術,歡迎交流!
聲明 歡迎轉載,但請保留文章原始出處:) 部落格園:http://www.cnblogs.com
農民伯伯: http://over140.cnblogs.com
系列
1、使用Vitamio打造自己的Android萬能播放器(1)——準備
2、使用Vitamio打造自己的Android萬能播放器(2)—— 手勢控制亮度、音量、縮放
3、使用Vitamio打造自己的Android萬能播放器(3)——本地播放(主介面、播放清單)
本文
一、目標
1.1 A-Z快速切換尋找影片
把手機上的連絡人上的A-Z快速尋找運用到了這裡,尋找檔案更便捷。這也是"學"的米聊的
1.2 緩衝掃描視頻列表
首次使用掃描SD卡一遍,以後就從資料庫讀取了,下篇文章再加一個監聽即可。
1.3
二、實現
核心代碼:
public class FragmentFile extends FragmentBase implements OnItemClickListener {
private FileAdapter mAdapter;
private TextView first_letter_overlay;
private ImageView alphabet_scroller;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View v = super.onCreateView(inflater, container, savedInstanceState);
// ~~~~~~~~~ 繫結控制項
first_letter_overlay = (TextView) v.findViewById(R.id.first_letter_overlay);
alphabet_scroller = (ImageView) v.findViewById(R.id.alphabet_scroller);
// ~~~~~~~~~ 綁定事件
alphabet_scroller.setClickable(true);
alphabet_scroller.setOnTouchListener(asOnTouch);
mListView.setOnItemClickListener(this);
// ~~~~~~~~~ 載入資料
if (new SQLiteHelper(getActivity()).isEmpty())
new ScanVideoTask().execute();
else
new DataTask().execute();
return v;
}
/** 單擊啟動播放 */
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
final PFile f = mAdapter.getItem(position);
Intent intent = new Intent(getActivity(), VideoViewDemo.class);
intent.putExtra("path", f.path);
startActivity(intent);
}
private class DataTask extends AsyncTask<Void, Void, ArrayList<PFile>> {
@Override
protected void onPreExecute() {
super.onPreExecute();
mLoadingLayout.setVisibility(View.VISIBLE);
mListView.setVisibility(View.GONE);
}
@Override
protected ArrayList<PFile> doInBackground(Void... params) {
return FileBusiness.getAllSortFiles(getActivity());
}
@Override
protected void onPostExecute(ArrayList<PFile> result) {
super.onPostExecute(result);
mAdapter = new FileAdapter(getActivity(), FileBusiness.getAllSortFiles(getActivity()));
mListView.setAdapter(mAdapter);
mLoadingLayout.setVisibility(View.GONE);
mListView.setVisibility(View.VISIBLE);
}
}
/** 掃描SD卡 */
private class ScanVideoTask extends AsyncTask<Void, File, ArrayList<PFile>> {
private ProgressDialog pd;
private ArrayList<File> files = new ArrayList<File>();
@Override
protected void onPreExecute() {
super.onPreExecute();
pd = new ProgressDialog(getActivity());
pd.setMessage("正在掃描視頻檔案...");
pd.show();
}
@Override
protected ArrayList<PFile> doInBackground(Void... params) {
// ~~~ 遍曆檔案夾
eachAllMedias(Environment.getExternalStorageDirectory());
// ~~~ 入庫
SQLiteHelper sqlite = new SQLiteHelper(getActivity());
SQLiteDatabase db = sqlite.getWritableDatabase();
try {
db.beginTransaction();
SQLiteStatement stat = db.compileStatement("INSERT INTO files(" + FilesColumns.COL_TITLE + "," + FilesColumns.COL_TITLE_PINYIN + "," + FilesColumns.COL_PATH + "," + FilesColumns.COL_LAST_ACCESS_TIME + ") VALUES(?,?,?,?)");
for (File f : files) {
String name = FileUtils.getFileNameNoEx(f.getName());
int index = 1;
stat.bindString(index++, name);//title
stat.bindString(index++, PinyinUtils.chineneToSpell(name));//title_pinyin
stat.bindString(index++, f.getPath());//path
stat.bindLong(index++, System.currentTimeMillis());//last_access_time
stat.execute();
}
db.setTransactionSuccessful();
} catch (BadHanyuPinyinOutputFormatCombination e) {
e.printStackTrace();
} catch (Exception e) {
e.printStackTrace();
} finally {
db.endTransaction();
db.close();
}
// ~~~ 查詢資料
return FileBusiness.getAllSortFiles(getActivity());
}
@Override
protected void onProgressUpdate(final File... values) {
File f = values[0];
files.add(f);
pd.setMessage(f.getName());
}
/** 遍曆所有檔案夾,尋找出視頻檔案 */
public void eachAllMedias(File f) {
if (f != null && f.exists() && f.isDirectory()) {
File[] files = f.listFiles();
if (files != null) {
for (File file : f.listFiles()) {
if (file.isDirectory()) {
eachAllMedias(file);
} else if (file.exists() && file.canRead() && FileUtils.isVideoOrAudio(file)) {
publishProgress(file);
}
}
}
}
}
@Override
protected void onPostExecute(ArrayList<PFile> result) {
super.onPostExecute(result);
mAdapter = new FileAdapter(getActivity(), result);
mListView.setAdapter(mAdapter);
pd.dismiss();
}
}
private class FileAdapter extends ArrayAdapter<PFile> {
public FileAdapter(Context ctx, ArrayList<PFile> l) {
super(ctx, l);
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
final PFile f = getItem(position);
if (convertView == null) {
final LayoutInflater mInflater = getActivity().getLayoutInflater();
convertView = mInflater.inflate(R.layout.fragment_file_item, null);
}
((TextView) convertView.findViewById(R.id.title)).setText(f.title);
return convertView;
}
}
/**
* A-Z
*/
private OnTouchListener asOnTouch = new OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
switch (event.getAction()) {
case MotionEvent.ACTION_DOWN:// 0
alphabet_scroller.setPressed(true);
first_letter_overlay.setVisibility(View.VISIBLE);
mathScrollerPosition(event.getY());
break;
case MotionEvent.ACTION_UP:// 1
alphabet_scroller.setPressed(false);
first_letter_overlay.setVisibility(View.GONE);
break;
case MotionEvent.ACTION_MOVE:
mathScrollerPosition(event.getY());
break;
}
return false;
}
};
/**
* 顯示字元
*
* @param y
*/
private void mathScrollerPosition(float y) {
int height = alphabet_scroller.getHeight();
float charHeight = height / 28.0f;
char c = 'A';
if (y < 0)
y = 0;
else if (y > height)
y = height;
int index = (int) (y / charHeight) - 1;
if (index < 0)
index = 0;
else if (index > 25)
index = 25;
String key = String.valueOf((char) (c + index));
first_letter_overlay.setText(key);
int position = 0;
if (index == 0)
mListView.setSelection(0);
else if (index == 25)
mListView.setSelection(mAdapter.getCount() - 1);
else {
for (PFile item : mAdapter.getAll()) {
if (item.title_pinyin.startsWith(key)) {
mListView.setSelection(position);
break;
}
position++;
}
}
}
}
代碼說明:
代碼是基於上篇文章,新增了播放清單緩衝功能以及快速尋找功能。
a). 使用了pinyin4j開源項目,用於提取檔案名稱中的漢字的拼音,以便能夠。
b). A-Z這部分的代碼也是通過反編譯參考米聊的,比較有實用價值
c). 入庫部分使用了事務
其他代碼請參見項目代碼。
注意:由於是範例程式碼,考慮不盡周全,可能在後續章節中補充,請大家注意不要直接使用代碼!例如應該檢查一下SD卡是否可用等問題。
三、項目下載
Vitamio-Demo2012-6-8.zip
四、Vtamio與VPlayer
Vitamio:http://vov.io
VPlayer:http://vplayer.net(使用Vitamio最成功的產品,使用者超過500萬)
結束
這周發布新的版本稍忙,拖到周五才寫這篇文章,總算沒有食言 功能越做越細,也會盡量往一個正式的產品方向靠,儘可能的提供有用的代碼。