我正在做一個項目,我必須在地圖上顯示箭頭,這是一張圖片。當使用不同的屏幕時,底圖將伸展或壓縮。但是箭頭的位置仍然保持不變。是否有任何方法讓箭頭跟隨地圖?有沒有辦法根據屏幕大小改變圖像的位置?
圖像1是當我使用更小的屏幕,而圖像2是當我使用較大scrren
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" android:layout_width="fill_parent"
android:layout_height="fill_parent"
tools:context="com.example.window8.rescape.Escape"
android:id="@+id/main"
>
<ImageView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/background"
android:background="@drawable/basebase" />
<ImageView
android:layout_width="50dp"
android:layout_height="60dp"
android:id="@+id/pointer"
android:layout_gravity="bottom"
android:background="@drawable/pointer"
android:layout_alignParentBottom="true"
android:layout_alignParentStart="true"
android:layout_marginBottom="198dp" />
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1">
<ImageView
android:layout_width="30dp"
android:layout_height="30dp"
android:id="@+id/imageView2"
android:background="@drawable/arrow4"
android:layout_marginLeft="68px" />
<ImageView
android:layout_width="30dp"
android:layout_height="30dp"
android:id="@+id/imageView"
android:background="@drawable/arrow2"
android:layout_marginLeft="80px" />
</LinearLayout>
<LinearLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"></LinearLayout>
<LinearLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"></LinearLayout>
<LinearLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"></LinearLayout>
</LinearLayout>
</RelativeLayout>
你希望這些箭頭指向退出?僅剩權利。或者你有其他情況?我提供的答案解決了一個普遍問題。如果你想要的只是指向左上角和右上角,你的解決方案就容易得多。只需在框架佈局中添加箭頭,然後爲左上角和右上角的箭頭設置佈局重力! – hasan83