2011-07-20 103 views
0

下面是我用于删除Twitter用于登录我的数据以创建注销按钮的代码。但它仍然会自动记录我。有任何想法吗?如何在Android应用程序上从twitter注销

SharedPreferences.Editor editor = (this.getSharedPreferences(Login.PREFERENCES, 
Context.MODE_PRIVATE)).edit(); 
    editor.remove(Login.userkey); 
    editor.remove(Login.usersecret); 
    editor.remove(Login.username); 
    editor.commit(); 
    finish(); 

回答