Android Open Source - tehran_traffic_map Road Data






From Project

Back to project page tehran_traffic_map.

License

The source code is released under:

MIT License

If you think the Android project tehran_traffic_map listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.tehran.traffic.models;
/*from   ww w.j  a  va2  s.c om*/
import android.content.Context;

import com.tehran.traffic.R;

/**
 * Created by Mohsen on 11/3/14.
 */

public class RoadData {
    String[] imageUrl;
    String[] state;

    public RoadData(Context context) {
        this.state = context.getResources().getStringArray(R.array.states);
        this.imageUrl = context.getResources().getStringArray(R.array.roads);
    }

    public String getImageUrl(int id) {
        return imageUrl[id];
    }

    public String getState(int id) {
        return state[id];
    }
}




Java Source Code List

com.tehran.traffic.models.CloudMessage.java
com.tehran.traffic.models.RoadData.java
com.tehran.traffic.network.DataLoader.java
com.tehran.traffic.service.GcmBroadcastReceiver.java
com.tehran.traffic.service.GcmIntentService.java
com.tehran.traffic.ui.MainActivity.java
com.tehran.traffic.ui.NavigationView.java
com.tehran.traffic.ui.TouchImageView.java
com.tehran.traffic.util.Base64DecoderException.java
com.tehran.traffic.util.Base64.java
com.tehran.traffic.util.IabException.java
com.tehran.traffic.util.IabHelper.java
com.tehran.traffic.util.IabResult.java
com.tehran.traffic.util.Inventory.java
com.tehran.traffic.util.Purchase.java
com.tehran.traffic.util.Security.java
com.tehran.traffic.util.SkuDetails.java