/**
* 保存用户名和方法的业务方法
* @param context 上下文
* username 用户名
* password 方法
* @return
*/
public static void saveUserInfo(Context context,String username,String password){
SharedPreferences sp=context.getSharedPreferences("config",Context.MODE_PRIVATE);
Editor ed=sp.edit();
ed.putString("username"
//读取
SharedPreferences sp=getSharedPreferences("config"));
et_password.setText(sp.getString("password",""));