Back to project page Mapyst.
The source code is released under:
Apache License
If you think the Android project Mapyst listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * Copyright (C) 2013 Mapyst/*from w w w. j a v a 2s . c om*/ * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.mapyst.android; public class Images { public final class Icons { public static final int RIGHT_ARROW = 0; public static final int LEFT_ARROW = 1; public static final int UP_STAIRS = R.drawable.stairs_up; public static final int DOWN_STAIRS = R.drawable.stairs_down; public static final int UP_ELEVATOR = R.drawable.elevator_up; public static final int DOWN_ELEVATOR = R.drawable.elevator_down; public static final int UP_RAMP = R.drawable.ramp_up; public static final int DOWN_RAMP = R.drawable.ramp_down; public static final int UP_STAIRS_H = R.drawable.stairs_up_h; public static final int DOWN_STAIRS_H = R.drawable.stairs_down_h; public static final int UP_ELEVATOR_H = R.drawable.elevator_up_h; public static final int DOWN_ELEVATOR_H = R.drawable.elevator_down_h; public static final int UP_RAMP_H = R.drawable.ramp_up_h; public static final int DOWN_RAMP_H = R.drawable.ramp_down_h; public static final int STAIRS = R.drawable.stairs; public static final int ELEVATOR = R.drawable.elevator; public static final int START = R.drawable.start; public static final int END = R.drawable.end; } }