[android] sharedPreference入门

移动开发 作者: 2024-08-19 20:15:02
/********************2016年5月6日 更新**************************************/ 知乎:Android 如何实现判断用户首次使用,比如首
    /**
     * 保存用户名方法的业务方法
     * @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",""));

总结

原创声明
本站部分文章基于互联网的整理,我们会把真正“有用/优质”的文章整理提供给各位开发者。本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
本文链接:http://www.jiecseo.com/news/show_65123.html