移动图像imageview

时间:2010-11-07 19:34:40

标签: android image move

我有一个问题。我已经在XML ImageView中完成了。不幸的是,手机屏幕左侧的“保持”。我希望这张照片能够转移到正确的位置。 我想指出图像的X和Y位置移动到指示的位置。 我该怎么做呢? 请详细解释,因为我是Java的新手程序员。 抱歉错误。我不是每天都用英语说。

1 个答案:

答案 0 :(得分:1)

我不建议为元素设置固定位置,因为它会让您的生活变得更难以适应不同的屏幕尺寸。

使用RelativeLayout。以下是XML的外观示例。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent">
  <ImageView 
   android:id="@+id/imageview"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:src="@drawable/icon"
   android:layout_alignParentRight="true"/>
</RelativeLayout>

这样ImageView将永远绑定到其父母的右侧。这是通过在android:layout_alignParentRight="true"上设置ImageView来实现的。

希望它有所帮助。