5

在此处输入图像描述嗨,我是自定义标签的新手,我只想隐藏操作栏。有什么方法可以做到这一点,任何链接,代码和概念都将提前感谢!

这是代码!

CustomTabsIntent.Builder intentBuilder = new CustomTabsIntent.Builder();
    intentBuilder.setStartAnimations(this, R.anim.slide_in_right, R.anim.slide_out_left);
    intentBuilder.setExitAnimations(this, android.R.anim.slide_in_left,
        android.R.anim.slide_out_right);

    //Open the Custom Tab        
    intentBuilder.build().launchUrl(context, Uri.parse("https://developer.chrome.com/"));    
4

1 回答 1

-2

你可以像这样在你的活动中隐藏 Acton Bar

getSupportActionBar().hide();

希望这可以帮助。

于 2018-07-17T05:45:00.337 回答