我正在尝试创建一个仅播放 .mp3 文件的媒体播放器。我在我的应用程序上创建并显示了列表,但我无法让它播放歌曲。有人建议我使用意图,但我不知道该怎么做。
这是代码;
ListView list;
Cursor cursor;
int columnIndex;
int count;
private ArrayAdapter arrayAdapter;
private Button dropbox;
public MainActivity()
{
}
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
dropbox = (Button) findViewById(R.id.dropbox);
list = (ListView) findViewById(android.R.id.list);
dropbox.setOnClickListener(new View.OnClickListener()
{
@Override
public void onClick(View v)
{
Intent i = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.dropbox.com"));
startActivity(i);
}
});
String[] displayMusic = {MediaStore.Audio.Media._ID, MediaStore.Audio.Media.DISPLAY_NAME};
cursor = getContentResolver().query(MediaStore.Audio.Media.EXTERNAL_CONTENT_URI, displayMusic, null, null, null);
//0 is the id for a mp3 file on the sd card
//1 is the file name of the mp3 file on the sd card
final ArrayList<String> listOfMp3s = new ArrayList<String>();
final ArrayList<String> listOfIds = new ArrayList<String>();
while (cursor.moveToNext())
{
if(cursor.getString(1).endsWith("mp3"))
{
listOfMp3s.add(cursor.getString(1));
listOfIds.add(cursor.getString(0));
}
}
arrayAdapter = new ArrayAdapter(this, android.R.layout.simple_list_item_1, listOfMp3s);
list.setAdapter(arrayAdapter);
list.setOnItemClickListener(new OnItemClickListener()
{
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id)
{
Intent songPageIntent = new Intent(getApplicationContext(), SongPage.class);
startActivity(songPageIntent);
}
});
}