我在相对布局中有两个图像,图像 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>