有没有办法检查当前地图是地图模式还是卫星模式?
我通过单击切换按钮将地图设置为卫星视图,
mapToggle.setOnClickListener(new OnClickListener()
{
public void onClick(View v)
{
if (mapToggle.isChecked())
{
mapV.setSatellite(true);
} else {
mapV.setSatellite(false);
}
}});
我想以编程方式确定应用程序重新启动时它所处的模式。请指教。
I am setting the Map to Satellite view on click of a toggle button
mapToggle.setOnClickListener(new OnClickListener()
{
public void onClick(View v)
{
if (mapToggle.isChecked())
{
mapV.setSatellite(true);
} else {
mapV.setSatellite(false);
}
}});
I want to programitically determine which mode it is in when the app restarts. Please advice.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我完成此操作的方法是在 SharedPreferences 中设置一个 int 值。然后单击该按钮,获取该值并相应地打开或关闭卫星。
你可能想稍微清理一下,但这对我有用。
The way I accomplished this is to set an int value in your SharedPreferences. Then onClick of that button, get the value and switch satellite on or off accordingly.
You may want to clean it up a little, but it works for me.