GoogleMapsAPIを使用して作成したアプリを実行しています。
私が使用しているエミュレーターでは期待どおりに機能しますが、グラフィックスは私の電話では異なる方法でレンダリングされるようです。
以下の画像を参照してください
これが私のactivity.xmlファイルです
<RelativeLayout 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" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:padding="@dimen/padding_medium"
android:text="@string/hello_world"
tools:context=".MainActivity" />
<TextView
android:id="@+id/textView1"
android:layout_width="fill_parent"
android:layout_height="30dp"
android:background="@drawable/repeat"
android:layout_marginTop="0dp"
android:text=""
android:textAppearance="?android:attr/textAppearanceLarge" />
<com.google.android.maps.MapView
android:id="@+id/mapView"
android:layout_marginTop="30dp"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:enabled="true"
android:clickable="true"
android:apiKey="--private--" />
</RelativeLayout>
同じ画像が異なる方法で観察されるのはなぜですか?1つはデバイス上にあり、もう1つはエミュレーター上にありますか?