こんにちは、見てくれてありがとう。私は私の最初のAndroidアプリに取り組んでいます。タブの1つで、機能的なバージョンのGoogleマップが必要です。ご覧のとおり、順調に進んでいます。ただし、エミュレータでナビゲーションなどのアドレスをズームイン/入力して、正しく機能しているかどうかを確認する方法がわかりません。
レイアウトxmlは次のとおりです。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<com.google.android.maps.MapView
android:id="@+id/myMapView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:enabled="true"
android:clickable="true"
android:apiKey="myapikey"
/>
</LinearLayout>
と私のマップアクティビティのJava:
import android.os.Bundle;
import com.google.android.maps.MapActivity;
public class MapsActivity extends MapActivity {
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.maps_layout);
}
@Override
protected boolean isRouteDisplayed() {
// TODO Auto-generated method stub
return false;
}
}