0

我遇到了一个小问题,我想创建位于图像特定部分的按钮。

我原来的做法是使用图像作为我的 LinearLayout 的背景,并将按钮放在地图的顶部。我可以通过更改边距来按我想要的方式定位它们,但是当屏幕尺寸改变时我遇到了问题。

源代码:

<LinearLayout  android:orientation="vertical" xmlns:android="http://schemas.android.com/apk/res/android" android:layout_height="fill_parent" android:layout_width="fill_parent">

<LinearLayout
    android:layout_width="300dp"
    android:layout_height="300dp"
    android:background="@drawable/howlingabyssmap"
    android:orientation="horizontal" >
    <ImageButton
        android:id="@+id/imageButton2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_alignParentTop="true"
        android:layout_alignParentTop="true"
        android:layout_marginRight="120dp"
        android:layout_marginTop="180dp"
        android:background="@drawable/health"
        android:src="@drawable/health"/>

</LinearLayout>

现在有人有办法解决这个问题吗?我尝试使用 weightSum 和 layout_weight,但我没有设法解决它。

4

1 回答 1

0

在 FrameLayout 中使用 Buttons 和 ImageView 而不是使用 LinearLayout 和 ImageButton

于 2013-05-15T21:12:36.713 回答