0

嗨,我得到了一张图片,上面有一些随机的圆圈。我想在其中心放置一个视图,例如 imageview。图像是这样的

[1] http://www.kirupa.com/html5/images/randomCircles.png

当屏幕分辨率改变时,我的 imageview 的位置也会改变。我想为所有分辨率很好地放置它们。

我尝试的是

 <ImageView
    android:id="@+id/create"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_marginBottom="291dp"
    android:layout_marginRight="51dp"
    android:layout_toLeftOf="@+id/album"
    android:src="@drawable/create" />

<ImageView
    android:id="@+id/album"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignTop="@+id/create"
    android:layout_centerHorizontal="true"
    android:src="@drawable/album" />

<ImageView
    android:id="@+id/imageView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_above="@+id/existing"
    android:layout_alignParentLeft="true"
    android:layout_marginBottom="26dp"
    android:layout_marginLeft="34dp"
    android:src="@drawable/applogo" />

<ImageView
    android:id="@+id/demo"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/album"
    android:layout_marginTop="95dp"
    android:layout_toRightOf="@+id/album"
    android:src="@drawable/demo" />

<ImageView
    android:id="@+id/existing"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerVertical="true"
    android:layout_toRightOf="@+id/demo"
    android:src="@drawable/existing" />

我知道这是不对的,也不知道该怎么做。请帮助我

4

1 回答 1

1

您还需要有蓝色圆圈的图像。如果应用程序在不同的屏幕上运行,您无法让每个 ImageView 都准确地位于每个圆圈的中心。将蓝色圆圈放在将作为 ImageView 的父级的白色屏幕上并设置属性

android:layout_centerInParent="true"

到内部图像。只有这样,您的 UI 才能支持多个屏幕。

于 2013-10-21T12:11:44.153 回答