我正在运行我创建的使用 Google Maps API 的应用程序。
它在我正在使用的模拟器上按预期工作,但是,图形似乎在我的手机上以不同的方式呈现。
请参阅以下图片以供参考
这是我的 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>
为什么同一图像的观察结果不同 - 一个在设备上,一个在模拟器上?