在android中移动图像的一部分

时间:2016-05-16 05:34:21

标签: android android-layout imageview android-imageview touchimageview

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

0 个答案:

没有答案