아래와 같이

name = (EditText)layout.findViewById(R.id.UserName);


        pref = getSharedPreferences("UserRegistration", 0);

edit = pref.edit();

edit.putString("UserName", name.getText().toString());

edit.commit();


SharedPreferences를 활용해 입력받은 사용자 이름(한글)을 저장하고


apk의 데이터영역 /data/data/apk이름/shared_prefs에서 UserRegistration.xml 파일을


오픈해보니 한글로 입력된 부분이 깨지네요.


한글 깨짐현상을 해결할 수 있는 방법에 대해 조언 부탁드립니다.