use of de.westnordost.streetcomplete.view.CompassView in project StreetComplete by westnordost.
the class AddCyclewayForm method onCreateView.
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle inState) {
View view = super.onCreateView(inflater, container, inState);
setContentView(R.layout.quest_cycleway);
puzzle = view.findViewById(R.id.puzzle);
puzzle.setListener(this::showCyclewaySelectionDialog);
compassView = view.findViewById(R.id.compassNeedle);
wayOrientationAtCenter = getWayOrientationAtCenterLineInDegrees(getElementGeometry());
initPuzzleDisplay(inState);
initPuzzleImages(inState);
return view;
}
Aggregations