Show black preview screen in task manager on ICS

2019-02-14 01:48发布

I want to show a black screen in the task manager preview under Ice Cream Sandwich, like the German 'finanzstatus' app does. It would be nice if someone could point me in the right direction.

1条回答
smile是对你的礼貌
2楼-- · 2019-02-14 02:41

Using FLAG_SECURE will block your app from screenshots, including the recent tasks list:

public class FlagSecureTestActivity extends Activity {
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    getWindow().setFlags(LayoutParams.FLAG_SECURE,
                         LayoutParams.FLAG_SECURE);

    setContentView(R.layout.main);
  }
}
查看更多
登录 后发表回答