0
我建立一個Twitter客戶端,當它打開它強行關閉和logat顯示的OnCreate異常()方法,構造推特(字符串,字符串)已被棄用
這裏有什麼問題
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// find views by id
buttonUpdate = (Button) findViewById(R.id.buttonUpdate);
textStatus = (EditText) findViewById(R.id.textStatus);
// Add listener
buttonUpdate.setOnClickListener(this);
//Initialize twitter
prefs = PreferenceManager.getDefaultSharedPreferences(this);
String username = prefs.getString("username", "n/a");
String password = prefs.getString("password", "n/a");
if (username != null && password != null){
twitter = new Twitter(username, password);
}
}
,我認爲它是在這裏在這一行
twitter = new Twitter(username, password);
它在內襯和表演「的構造推特(字符串,字符串)已被棄用」
這是什麼意思?
這意味着它不是現在使用的或可用的一些新的方法相同 – user3283976