我正在尝试在我的应用程序中使用 apiv2 集成谷歌地图。但它在 PlaceDialogFragment 类中显示错误。错误说:“避免片段中的非默认构造函数:使用默认构造函数加上 Fragment#setArguments(Bundle) 代替”。错误出现在参数化构造函数行上。我在代码中对此进行了注释,因此您可以轻松找到它。不知道该怎么做..请帮助
public class PlaceDialogFragment extends DialogFragment{
TextView mTVPhotosCount = null;
TextView mTVVicinity = null;
ViewFlipper mFlipper = null;
Place mPlace = null;
DisplayMetrics mMetrics = null;
public PlaceDialogFragment(){
super();
}
//the following line is showing the error -
public PlaceDialogFragment(Place place, DisplayMetrics dm){
super();
this.mPlace = place;
this.mMetrics = dm;
}
@Override
public void onCreate(Bundle savedInstanceState) {
// For retaining the fragment on screen rotation
setRetainInstance(true);
super.onCreate(savedInstanceState);
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View v = inflater.inflate(R.layout.dialog_layout, null);
// Getting reference to ViewFlipper
mFlipper = (ViewFlipper) v.findViewById(R.id.flipper);
// Getting reference to TextView to display photo count
mTVPhotosCount = (TextView) v.findViewById(R.id.tv_photos_count);
// Getting reference to TextView to display place vicinity
mTVVicinity = (TextView) v.findViewById(R.id.tv_vicinity);
if(mPlace!=null){
// Setting the title for the Dialog Fragment
getDialog().setTitle(mPlace.mPlaceName);
// Array of references of the photos
Photo[] photos = mPlace.mPhotos;
// Setting Photos count
mTVPhotosCount.setText("Photos available : " + photos.length);
// Setting the vicinity of the place
mTVVicinity.setText(mPlace.mVicinity);
// Creating an array of ImageDownloadTask to download photos
ImageDownloadTask[] imageDownloadTask = new ImageDownloadTask[photos.length];
int width = (int)(mMetrics.widthPixels*3)/4;
int height = (int)(mMetrics.heightPixels*1)/2;
String url = "https://maps.googleapis.com/maps/api/place/photo?";
String key = "key=YOUR_BROWSER_KEY";
String sensor = "sensor=true";
String maxWidth="maxwidth=" + width;
String maxHeight = "maxheight=" + height;
url = url + "&" + key + "&" + sensor + "&" + maxWidth + "&" + maxHeight;
// Traversing through all the photoreferences
for(int i=0;i<photos.length;i++){
// Creating a task to download i-th photo
imageDownloadTask[i] = new ImageDownloadTask();
String photoReference = "photoreference="+photos[i].mPhotoReference;
// URL for downloading the photo from Google Services
url = url + "&" + photoReference;
// Downloading i-th photo from the above url
imageDownloadTask[i].execute(url);
}
}
return v;
}
@Override
public void onDestroyView() {
if (getDialog() != null && getRetainInstance())
getDialog().setDismissMessage(null);
super.onDestroyView();
}
private Bitmap downloadImage(String strUrl) throws IOException{
Bitmap bitmap=null;
InputStream iStream = null;
try{
URL url = new URL(strUrl);
/** Creating an http connection to communcate with url */
HttpURLConnection urlConnection = (HttpURLConnection) url.openConnection();
/** Connecting to url */
urlConnection.connect();
/** Reading data from url */
iStream = urlConnection.getInputStream();
/** Creating a bitmap from the stream returned from the url */
bitmap = BitmapFactory.decodeStream(iStream);
}catch(Exception e){
Log.d("Exception while downloading url", e.toString());
}finally{
iStream.close();
}
return bitmap;
}
private class ImageDownloadTask extends AsyncTask<String, Integer, Bitmap>{
Bitmap bitmap = null;
@Override
protected Bitmap doInBackground(String... url) {
try{
// Starting image download
bitmap = downloadImage(url[0]);
}catch(Exception e){
Log.d("Background Task",e.toString());
}
return bitmap;
}
@Override
protected void onPostExecute(Bitmap result) {
// Creating an instance of ImageView to display the downloaded image
ImageView iView = new ImageView(getActivity().getBaseContext());
// Setting the downloaded image in ImageView
iView.setImageBitmap(result);
// Adding the ImageView to ViewFlipper
mFlipper.addView(iView);
// Showing download completion message
Toast.makeText(getActivity().getBaseContext(), "Image downloaded successfully", Toast.LENGTH_SHORT).show();
}
}
}