Android日常debug

  1. 获取SD卡文件
    File file=new File(Environment.getExternalStorageDirectory().toString()+"/Music",
            "music.mp3");
    mediaPlayer.setDataSource(file.getPath());
  2. 报错:Cannot resolve symbol 'R',此情况下多为XML文件出现错误,要查看具体报错原因

猜你喜欢

转载自www.cnblogs.com/hemeiwolong/p/11005535.html