android mapview交通信息

时间:2011-09-16 09:02:39

标签: android android-mapview

我尝试在mapview上显示流量信息,但在与本机地图应用程序(对于相同位置)完美配合时,不显示任何内容。

这是我的代码:

public class Main extends MapActivity 
{
    private MapView map = null;

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {

    super.onCreate(savedInstanceState);

    LinearLayout ll = new LinearLayout(this);
    ll.setOrientation(LinearLayout.VERTICAL);

    map = new MapView(this,"XXXX");
    map.setEnabled(true);
    map.setClickable(true);
    map.setBuiltInZoomControls(true);
    map.setTraffic(true);

    ll.addView(map, new LinearLayout.LayoutParams(
        LayoutParams.FILL_PARENT,
        LayoutParams.FILL_PARENT));
    setContentView(ll);  
}

1 个答案:

答案 0 :(得分:0)

您必须位于没有很多交通信息的地区。尝试在美国浏览,看看你是否看到了一些交通信息?