public void getUserProfileImg(String picturePath) {
   String url =
       "http://yss159.cafe24.com:8080/ItDocImgServer/getPicture?picturePath="
           + picturePath
           + "&objectType="
           + ItDocConstants.OBJECT_TYPE_USER;
   activity.imageLoader.DisplayUserImage(url, activity.getUserProfileImgView());
 }
 public UserProfileConnectionHandler(Context context) {
   activity = (UserProfileActivity) context;
   LayoutInflater inflator =
       (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
   loadingView = inflator.inflate(R.layout.connection_loading, null);
   activity.addContentView(
       loadingView, new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT));
 }
 private void setData() {
   activity.setDownloadData(downloadedUserView);
 }