I have an Android APP I would like to prevent users from taking any screenshots. No screenshots allowed.
I found this code below from stackflow that uses Flag_Secure but not sure how to implement this within Gideros or through Eclipse.
Any ideas or suggestions appreciated
thanks
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);
}
}
Comments
Likes: johnyc100