用户名字段应预先填写最近用户的用户名

Username field should come pre-filled with the username of the most recent user

我希望我的应用在登录页面上检索最近登录的用户名。我希望用户名字段在它是空白的时候出现,而不是在它预先填入最近用户的用户名时出现。

在初始化文本字段时做这样的事情:

myTextField.setText(Preferences.get("lastLogin", ""));

然后在登录事件处理代码中:

Preferences.put("lastLogin", myTextField.getText());