我正在从用户输入两个值,即经度和纬度,并且有一个显示位置按钮,单击时它使用这两个经度和纬度值显示位置。我只需要在 showlocation() 或按钮上使用意图
请检查我的代码
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<EditText android:id="@+id/lat"
android:layout_weight="50"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:hint="@string/lat" />
<EditText
android:id="@+id/longi"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="50"
android:ems="10"
android:hint="@string/longi" >
<requestFocus />
</EditText>
<Button
android:layout_width="1dp"
android:layout_height="wrap_content"
android:layout_weight="100"
android:text="@string/button_send"
android:onClick="showlocation()" />
</LinearLayout>
public void showlocation(){
String uri = "http://maps.google.com/maps?saddr=" + "9982878"+","+"76285774"+"&daddr="+"9992084"+","+"76286455";
Intent intent = new Intent(android.content.Intent.ACTION_VIEW, Uri.parse(uri));
intent.setClassName("com.google.android.apps.maps", "com.google.android.maps.MapsActivity");
startActivity(intent);
}