please help me to do this project, i want to know how to detect audio files from phone storage, THANKS in advance guys :).
here is my code
  package com.example.cameraapp;
import android.os.Bundle;
import android.provider.MediaStore;
import android.app.Activity;
import android.view.Menu;
import android.widget.ListView;
public class FinalChoice extends Activity {
 ListView lv;
 Model[] modelItems;
 @Override
 protected void onCreate(Bundle savedInstanceState) {
 super.onCreate(savedInstanceState);
 setContentView(R.layout.listview1hold);
 lv = (ListView) findViewById(R.id.listView1);
 String columns[] ={MediaStore.Audio.Playlists.Members.TITLE};
 modelItems = new Model[columns.length];
 for(int a=0; a<columns.length;a++)
 {
     modelItems[a]=new Model(columns[a], 0);
 }
 CustomAdapter adapter = new CustomAdapter(this, modelItems);
 lv.setAdapter(adapter);
 }
 @Override
 public boolean onCreateOptionsMenu(Menu menu) {
 // Inflate the menu; this adds items to the action bar if it is present.
 getMenuInflater().inflate(R.menu.main, menu);
 return true;
 }
}
this code only gives an output of a"title" with a checkbox