溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

本地掃描音樂文件

發(fā)布時(shí)間:2020-04-07 00:06:21 來源:網(wǎng)絡(luò) 閱讀:432 作者:鷺明 欄目:開發(fā)技術(shù)

本地掃描音樂文件


public class ScannerActivity extends Activity {


private ListView mlistview;

ArrayList<MusicInfo> list = new ArrayList<MusicInfo>();

private MyAdapter myAdapter;

private MyReceiver myReceiver;

private ProgressBar progressbar;

private MyApplication myApplication;


@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_scanner);

myApplication = (MyApplication) getApplication();

myApplication.addActity(this);

progressbar = (ProgressBar) findViewById(R.id.scanner_progressbar);

mlistview = (ListView) findViewById(R.id.listView1); 

myAdapter = new MyAdapter();

mlistview.setAdapter(myAdapter);

}


public void btnScanner(View v) {

Intent intent = new Intent(Intent.ACTION_MEDIA_MOUNTED);

Uri uri = Uri.parse("file://" + Environment.getExternalStorageDirectory().getAbsolutePath());

intent.setData(uri);

sendBroadcast(intent);

}


private void scannerMusic() {

list.clear();

ContentResolver contentResolver = getContentResolver();

Cursor cursor = contentResolver.query(Media.EXTERNAL_CONTENT_URI, null, null, null, null);

boolean first = cursor.moveToFirst();

while (first) {

String singer = cursor.getString(cursor.getColumnIndex(Media.ARTIST));

String musicname = cursor.getString(cursor.getColumnIndex(Media.DISPLAY_NAME));

String musicurl = cursor.getString(cursor.getColumnIndex(Media.DATA));

int musiclen = cursor.getInt(cursor.getColumnIndex(Media.DURATION));

list.add(new MusicInfo(singer, musicname, musiclen, musicurl, null));

first = cursor.moveToNext();

}

cursor.close();

myAdapter.notifyDataSetChanged();

}


class MyAdapter extends BaseAdapter {


@Override

public int getCount() {

return list.size();

}


@Override

public Object getItem(int position) {

return null;

}


@Override

public long getItemId(int position) {

return 0;

}


@Override

public View getView(int position, View convertView, ViewGroup parent) {

View inflate = getLayoutInflater().inflate(R.layout.scanner_item, null);

TextView musicname = (TextView) inflate.findViewById(R.id.scanner_musicname);

TextView singer = (TextView) inflate.findViewById(R.id.scanner_singer);

MusicInfo musicInfo = list.get(position);

musicname.setText(musicInfo.getMusicName());

singer.setText(musicInfo.getSinger());

return inflate;

}


}


@Override

protected void onStart() {


myReceiver = new MyReceiver();

IntentFilter filter = new IntentFilter();

filter.addAction(Intent.ACTION_MEDIA_SCANNER_STARTED);

filter.addAction(Intent.ACTION_MEDIA_SCANNER_FINISHED);

filter.addDataScheme("file");

registerReceiver(myReceiver, filter);

super.onStart();

}


@Override

protected void onStop() {

unregisterReceiver(myReceiver);

super.onStop();

}

@Override

protected void onDestroy()

{

myApplication.removeActivity(this);

super.onDestroy();

}


class MyReceiver extends BroadcastReceiver {


@Override

public void onReceive(Context context, Intent intent) {

String action = intent.getAction();

switch (action) {

case Intent.ACTION_MEDIA_SCANNER_STARTED:

Toast.makeText(ScannerActivity.this, "開始掃描", Toast.LENGTH_SHORT).show();


break;


case Intent.ACTION_MEDIA_SCANNER_FINISHED:

Toast.makeText(ScannerActivity.this, "結(jié)束掃描", Toast.LENGTH_SHORT).show();

mlistview.setVisibility(View.VISIBLE);

scannerMusic();

progressbar.setVisibility(View.GONE); 

break;


default:

break;

}

}


}


}




向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI