search = (Button)findViewById(R.id.FindButton);
search.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("*/*");
startActivityForResult(intent,1);
}
});
我使用ACTION_GET_CONTENT函数来获取文件的名称和本地路径。(setType是 / 但我想获取json文件)
所以这是我的onActivityResult
protected void onActivityResult(int requestCode, int resultCode, Intent data){
super.onActivityResult(requestCode, resultCode, data);
if(resultCode == 1){
}
}
当我选择数据然后我放入哪些代码?