我必须在另一个ImageView中安装一个ImageView。它更小,必须正好在中心。我有两个图像缩放不同的屏幕分辨率,但我只能测试一个手机,我想知道我是否设置第二个图像的高度和宽度与dpi适合我的屏幕分辨率将完美匹配所有屏幕或有任何属性在Android中,除了设置高度和宽度,将自动将一个ImageView置于其他ImageView内部?
编辑:它位于RelativeLayout,而ImageViews位于左上角,所以我没有添加任何特定的内容,因为默认情况下它们都在那里。
Edit2:将第一个ImageView更改为RelativeLayout可以帮助将第二个图像居中放在其中,但是RelativeLayout会变得太大并且会放大背景图像。有没有办法让RelativeLayout和它的背景一样大?
答案 0 :(得分:8)
试试这个
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<RelativeLayout
android:layout_width="250dp"
android:layout_height="250dp" >
<ImageView
android:id="@+id/base"
android:layout_height="250dp"
android:layout_width="250dp"
android:src="@drawable/home"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true" />
<ImageView
android:id="@+id/center"
android:layout_height="150dp"
android:layout_width="150dp"
android:src="@drawable/home"
android:layout_centerInParent="true"
android:layout_centerVertical="true" />
</RelativeLayout>
</RelativeLayout>
答案 1 :(得分:2)
你不能把imageView放在另一个里面。希望以下代码对您有所帮助。
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/background_image"
android:gravity="center" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/image_on_center" />
</LinearLayout>
答案 2 :(得分:0)
试试这个:
android:layout_gravity="center"
答案 3 :(得分:0)
使用RelativeLayout
然后使用android:layout_centerInParent="true"
记住您添加ImageViews
的顺序将决定最重要的内容:)