這是我用來在按下按鈕時將鏈接發送給其他人的代碼。當按鈕被按下時,獲取當前位置作爲谷歌地圖URL
當按下按鈕時,如何才能將當前位置作爲谷歌地圖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());
我們不知道是什麼'mChatApplication'是......請顯示[MCVE]你的問題在[編輯] –
你可以嘗試這個https://github.com/akhgupta/Android-EasyLocation – Akhil