public void OnGetShareUrlResult(MKShareUrlResult result, int type, int error)
            {

            }
            public void OnGetShareUrlResult(MKShareUrlResult result, int type,
                    int error)
            {
                // TODO Auto-generated method stub

            }
            public void OnGetShareUrlResult(MKShareUrlResult result, int type,
                    int error)
            {
                //分享短串结果
                Intent it = new Intent(Intent.ActionSend);
                it.PutExtra(Intent.ExtraText, "您的朋友通过百度地图SDK与您分享一个位置: " +
                               shareDemoActivity.currentAddr +
                               " -- " + result.Url);
                it.SetType("text/plain");
                shareDemoActivity.StartActivity(Intent.CreateChooser(it, "将短串分享到"));

            }