在横向模式下打开URL意图

时间:2015-02-18 13:26:35

标签: android url

可以打开网址" https://docs.google.com/spreadsheets.....ecc"直接在横向模式? 这是我用于使用chrome或谷歌应用程序打开URL的代码。

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);
        }
    });

0 个答案:

没有答案