我正在寻找一种为imageView设置坐标的方法。我想把其他图像放在坐标上。
ImageView img1 = (ImageView) findViewById(R.id.imageView1);
img1.setAdjustViewBounds(true);
我的布局是这样的:
<RelativeLayout android:id="@+id/rellayneuuuu"
android:layout_width="fill_parent" android:layout_height="fill_parent">
<ImageView android:id="@+id/imageView1" android:scaleType="centerCrop"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:src="@drawable/image1" />
<ImageView android:id="@+id/imageView2" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:src="@drawable/icon"
android:layout_marginTop="40px" android:layout_marginLeft="40px" />
</RelativeLayout>
感谢
答案 0 :(得分:0)
我不确定你是否理解正确,但从我的问题来看,this question可能会给你你正在寻找的答案......
修改强>
我认为RelativeLayout并不是设计用于处理这种行为,也许你应该看看Framelayout
实际上是为了支持视图的叠加而设计的。