Skip to content

Instantly share code, notes, and snippets.

@springcome
Created October 22, 2013 10:23
Show Gist options
  • Select an option

  • Save springcome/7098289 to your computer and use it in GitHub Desktop.

Select an option

Save springcome/7098289 to your computer and use it in GitHub Desktop.
안드로이드 설정파일 저장, android
public void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
SharedPreferences sp = getApplicationContext().getSharedPreferences("Str", mode);
SharedPreferences.Editor editSp = sp.edit();
editSp.putString("setting", "1");
}
//mode - 0 : 읽고쓰기
//MODE_WORLD_READABLE : 읽기공유
//MODE_WORLD_WRITEABLE : 쓰기공유
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment