マップ v2 を自分のアプリケーションに統合する作業を行っていましたが、正常に完了し、デバイスとエミュレーターの両方で物事を視覚化できましたが、レイアウトのマップの下にいくつかのウィジェットを追加しようとすると、スムーズにスクロールできず、マップがぼやけた印象を作成します画面上で、マップフラグメントが埋め込まれた状態でスクロールしようとしたときに下の画像を参照してください
上の画像では、スクロール時にスムーズに遷移して 2 つのボタンを表示することになっています。しかし、私は何かが間違っていることを認識しています。誰かが私に解決策を提案してもらえますか? よろしくお願いします
activity_main.xml
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:facebook="http://schemas.android.com/apk/res-auto"
android:id="@+id/scrollView1"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="730dp" >
<com.facebook.widget.LoginButton
android:id="@+id/login_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
facebook:confirm_logout="false"
facebook:fetch_user_info="true" />
<com.facebook.widget.ProfilePictureView
android:id="@+id/profilePicture"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:gravity="center_horizontal"
facebook:preset_size="normal" >
</com.facebook.widget.ProfilePictureView>
<TextView
android:id="@+id/greeting"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/profilePicture"
android:layout_centerHorizontal="true"
android:textColor="#333"
android:textSize="18sp" />
<fragment
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="345dp"
android:layout_alignParentLeft="true"
android:layout_below="@+id/profilePicture"
android:layout_marginTop="22dp"
class="com.google.android.gms.maps.SupportMapFragment" />
<Button
android:id="@+id/mapClear"
style="?android:attr/buttonStyleSmall"
android:layout_width="146dp"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/mapSet"
android:layout_alignBottom="@+id/mapSet"
android:layout_alignParentRight="true"
android:layout_marginTop="10dp"
android:layout_toRightOf="@+id/greeting"
android:text="Clear" />
<Button
android:id="@+id/mapSet"
style="?android:attr/buttonStyleSmall"
android:layout_width="146dp"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignRight="@+id/greeting"
android:layout_below="@+id/map"
android:layout_marginTop="10dp"
android:text="Set" />
<Button
android:id="@+id/fuelTest"
style="?android:attr/buttonStyleSmall"
android:layout_width="90dp"
android:layout_height="wrap_content"
android:layout_alignRight="@+id/profilePicture"
android:layout_below="@+id/mapSet"
android:layout_marginTop="25dp"
android:text="get fuel" />
<TextView
android:id="@+id/fuelLevel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/fuelTest"
android:layout_alignBottom="@+id/fuelTest"
android:layout_alignLeft="@+id/greeting"
android:text="@string/fuellevel"
android:textAppearance="?android:attr/textAppearanceMedium" />
<Button
android:id="@+id/post"
style="?android:attr/buttonStyleSmall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/greeting"
android:layout_alignBottom="@+id/greeting"
android:layout_alignParentRight="true"
android:layout_marginRight="18dp"
android:text="post" />
</RelativeLayout>