Back to project page proximo.
The source code is released under:
Copyright (c) 2010 Evan Martin. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: *...
If you think the Android project proximo 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) 2010 Martin Atkins. All rights reserved. // Use of this source code is governed by a BSD-style license that can // be found in the LICENSE file. //from w ww . j av a 2s .c o m package org.neugierig.proximo; /** * Place to keep a bunch of constants used to pass view state between activities. */ public class ViewState { public static final String ROUTE_ID_KEY = "route_id"; public static final String RUN_ID_KEY = "run_id"; public static final String STOP_ID_KEY = "stop_id"; public static final String ROUTE_NAME_KEY = "route_name"; public static final String RUN_NAME_KEY = "direction_name"; public static final String STOP_NAME_KEY = "stop_name"; }