2012-09-25 21:31:06 +00:00
|
|
|
package com.dougkeen.bart.activities;
|
|
|
|
|
|
|
|
import android.content.Intent;
|
|
|
|
|
|
|
|
import com.dougkeen.bart.model.Constants;
|
|
|
|
import com.dougkeen.bart.model.Station;
|
|
|
|
|
|
|
|
public class QuickRouteDialogFragment extends AbstractRouteSelectionFragment {
|
|
|
|
|
|
|
|
public QuickRouteDialogFragment(String title) {
|
|
|
|
super(title);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onOkButtonClick(Station origin, Station destination) {
|
|
|
|
startActivity(new Intent(Intent.ACTION_VIEW,
|
|
|
|
Constants.ARBITRARY_ROUTE_CONTENT_URI_ROOT.buildUpon()
|
|
|
|
.appendPath(origin.abbreviation)
|
|
|
|
.appendPath(destination.abbreviation).build()));
|
|
|
|
}
|
|
|
|
}
|