I need to open an XML file stored in a String variable. I want to open it with chrome without saving in the phone storage, is this possible?
I can open chrome using intents but now I need to load the xml file.
public void onClickOpen(View v){
Intent intent = getPackageManager().getLaunchIntentForPackage("com.android.chrome");
startActivity(intent);
}
Thanks in advance