我在相对布局中有两个图像,图像2放在图像1上,现在我想移动图像2的特定部分而不移动图像2的任何其他部分。我该怎么做?
下面是我的xml代码,我已经在同一个布局中动态添加了image2
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="16dp"
tools:context="sampleapp.com.cam2.Main2Activity"
android:id="@+id/rl2">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true"
android:id="@+id/imageView222"/>
</RelativeLayout>