코드 한 줄
[Solution] 안드로이드 로그인 정보 저장 기능 구현하기 본문
사용자 환경 : macOS Sierra 10.12.6, Android Studio 3.0.1 {
Build #AI-171.4443003, built on November 10, 2017
JRE: 1.8.0_152-release-915-b08 x86_64
JVM: OpenJDK 64-Bit Server VM by JetBrains s.r.o
}
현재 로그인 시스템이 구현되어 있는 대부분의 앱에는 자동 로그인 기능이 구현되어 있다.
자동 로그인 기능이 구현되어 있지 않은 앱을 사용해본 경험이 있다면 이 기능을 사용함으로써 앱이 많은 편리함을 가져다 준다는 것을 알 수 있다.
이 기능을 구현하기 위해 우리는 SharedPreference API를 사용할 것이다.
1. 가장 먼저 정보를 저장하기 위한 메소드를 내장한 클래스를 구현한다.
import android.content.Context; import android.content.SharedPreferences; import android.preference.PreferenceManager; public class SaveSharedPreference { static final String PREF_USER_NAME = "username"; static SharedPreferences getSharedPreferences(Context ctx) { return PreferenceManager.getDefaultSharedPreferences(ctx); } // 계정 정보 저장 public static void setUserName(Context ctx, String userName) { SharedPreferences.Editor editor = getSharedPreferences(ctx).edit(); editor.putString(PREF_USER_NAME, userName); editor.commit(); } // 저장된 정보 가져오기 public static String getUserName(Context ctx) { return getSharedPreferences(ctx).getString(PREF_USER_NAME, ""); } // 로그아웃 public static void clearUserName(Context ctx) { SharedPreferences.Editor editor = getSharedPreferences(ctx).edit(); editor.clear(); editor.commit(); } }
line 7. key 값에 해당된다.
line 9~11. 모든 액티비티에서 인스턴스를 얻기 위한 메소드이다.
line 14~18. 로그인 시 자동 로그인 여부에 따라 호출 될 메소드이다. userName이 저장된다.
line 21~23. 현재 저장된 정보를 가져오기 위한 메소드이다.
line 26~30. 자동 로그인 해제 및 로그아웃 시 호출 될 메소드이다.
2. 자동 로그인 여부를 체크할 인증용 액티비티 생성.
import android.content.Intent; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.util.Log; public class FirstAuthActivity extends AppCompatActivity { private Intent intent; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_first_auth); if(SaveSharedPreference.getUserName(FirstAuthActivity.this).length() == 0) { // call Login Activity intent = new Intent(FirstAuthActivity.this, LoginActivity.class); startActivity(intent); this.finish(); } else { // Call Next Activity intent = new Intent(FirstAuthActivity.this, HomeActivity.class); intent.putExtra("STD_NUM", SaveSharedPreference.getUserName(this).toString()); startActivity(intent); this.finish(); } } }
line 15~20. SharedPreference에 저장되어 있는 정보의 길이가 0일 경우, 즉 없을 경우 로그인 액티비트를 호출한다.
line 20~26. 나머지 경우, 즉 저장되어 있는 정보가 있을 경우 바로 로그인 다음 액티비티를 호출한다.
3. 자동 로그인 설정 시 사용할 코드
SaveSharedPreference.setUserName(LoginActivity.this, editId.getText().toString());
로그인 액티비티에서 자동 로그인 설정과 함께 로그인 시 EditText의 값을 SaveSharedPrefernce.setUserName(Context, String) 메소드를 통해 저장.
'Develop - > Android' 카테고리의 다른 글
[Solution] 안드로이드 커스텀 리스트뷰 구현하기 (0) | 2018.01.13 |
---|