摘要: 1 Intent intent = new Intent(Intent.ACTION_GET_CONTENT);2 intent.setType("audio/*");3 startActivity(Intent.createChooser(intent, "Select music")); 阅读全文
posted @ 2015-01-27 20:07 Ivan Aldrich 阅读(412) 评论(0) 推荐(0) 编辑
摘要: 在adapter中有mDatas。需要在EditText编辑完之后,将新的值赋给mDatas中。之前的做法,继承实现了一个TextWatcher类,构造函数中获得当前被点击item的position。然后mDatas.get(position).setValue(s.toString());可是不知... 阅读全文
posted @ 2015-01-27 19:40 Ivan Aldrich 阅读(450) 评论(0) 推荐(0) 编辑