공유 환경 설정에서 문자열을 가져 오는 것을 어떻게 할 수 있었는지 알고 싶습니다. (이미 설정했습니다.) 문자열 배열로 출력하여 내 이미지 가져 오기 프로그램을 만듭니다. 읽을 수 있어야합니다 (읽을 수있는 배열이어야합니다).문자열 배열에 대한 공유 환경 설정
SharedPreferences prefs;
prefs = PreferenceManager.getDefaultSharedPreferences(getActivity());
prefs.getString("imgUrl", null); //Output imgUrl to String Array somehow
// I would like my image fetcher to read a string array that has been fetched from shared preferences.
mImageFetcher.loadImage(Fragment3.imgUrl[position
- mNumColumns], imageView);
return imageView;
}
내 솔루션에서 아이디어를 얻을 수 있습니다 ... –