is possible to open URL site "https://docs.google.com/spreadsheets.....ecc" directly in landascape mode? this is the code that i use to open URL with chrome or google application.
mgbutton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent viewIntent = new Intent("android.intent.action.VIEW", Uri.parse("https://docs.google.com/spreadsheets.....ecc"));
startActivity(viewIntent);
}
});