use of com.example.androidforios.app.adapters.PredictionArrayAdapter in project AndroidForiOS by smbarne.
the class TripDetailFragment method onCreateView.
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
Prediction[] predictions = mTrip.predictions.toArray(new Prediction[mTrip.predictions.size()]);
PredictionArrayAdapter predictionArrayAdapter = new PredictionArrayAdapter(getActivity().getApplicationContext(), predictions);
setListAdapter(predictionArrayAdapter);
return super.onCreateView(inflater, container, savedInstanceState);
}
Aggregations