I have the following code to browse and choose a file from android file system
Intent intent = new Intent(Intent.ActionGetContent);
intent.SetType("*/*");
intent.AddCategory(Intent.CategoryOpenable);
StartActivityForResult(Intent.CreateChooser(intent, "Select a file"),0);
Now I want to get the content of the choosen file. I read that , to do that I have to put some code in
protected void onActivityResult(int requestCode, int resultCode, Intent data)
{
}
but this code never gets called and from the examples given I don't understand very good what to put in there. The file I want to read is a CSV file abd I want to put its data in an Array.