Guest User

Untitled

a guest
Dec 19th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. public void onClearData(View view) {
  2.  
  3. try {
  4. boolean isCleared = ((ActivityManager) getSystemService(ACTIVITY_SERVICE)).clearApplicationUserData();
  5. if (!isCleared) {
  6. Toast.makeText(this, "Not able to clear the data", Toast.LENGTH_SHORT).show();
  7. }
  8. } catch (Exception e) {
  9. e.printStackTrace();
  10. }
  11. }
Add Comment
Please, Sign In to add comment