阻止和取消阻止某些片段的屏幕截图

时间:2019-11-25 16:38:36

标签: android screenshot android-screen-support android-security

众所周知,我们可以使用的阻止活动/片段的方式:

public static int countCharInString(String s, char c)
    {

        return countCharInString(s, c, 0);


    }


    public static int countCharInString(String s, char c, int index)
    {
        if(index==s.length())
        {
            return 0;
        }
        if(s.charAt(index) == c)
        {
            return 1 + countCharInString(s, c, index+1);
        }
        if(s.charAt(index)!=c)
        {
            return countCharInString(s, c, index+1);
        }

    }

但是此标志阻止了活动视图。

如果您有一个window.setFlag(WindowManager.LayoutManager.FLAG_SECURE, WindowManager.LayoutManager.FLAG_SECURE) 带有3个片段,并且只需要阻止选项卡1。此刻bootomNav被所有片段阻塞。

是否有setFlag可以取消屏蔽屏幕截图?

0 个答案:

没有答案