これは、ボタンを押したときに同じチャットアプリケーション内の他の人にリンクを送信するために使用したコードです。ボタンを押したときにGoogleマップURLとして現在地を取得
ボタンを押すと、同じチャットアプリでGoogleマップのURLとして現在地を取得するにはどうすればよいですか?
TextView link = (TextView) findViewById(R.id.TextView1);
String linkText = "https://www.google.co.in/maps?geo:0,0?q=my+street+address?geo:latitude,longitude";
mChatApplication.newLocalUserMessage(linkText);
link.setText(linkText);
link.setMovementMethod(LinkMovementMethod.getInstance());
でこれらの権限を追加し、この
を試してみてください –
あなたはこれを試すことができますhttps://github.com/akhgupta/Android-EasyLocation – Akhil