如何在Android屏幕上放置图像,以便即使我更改分辨率,其位置也不会改变?
这是first_frag.xml文件,提前感谢.. 这是我在程序中使用的三个片段中的一个。 希望你能帮帮我,谢谢你。
first_frag.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/gray" >
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/imageView"
android:src="@drawable/philippines_map"
android:layout_below="@+id/imageView2" android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"/>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/imageView2"
android:src="@drawable/title"
android:layout_alignParentTop="true" android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"/>
<DigitalClock
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/digitalClock"
android:layout_alignParentTop="true" android:layout_alignParentRight="true"
android:layout_alignParentEnd="true"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceSmall"
android:text="Actual Time:"
android:id="@+id/textView"
android:layout_alignParentTop="true" android:layout_toLeftOf="@+id/digitalClock"/>
<ImageView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/imageView3"
android:src="@drawable/bag_red"
android:layout_above="@+id/imageView4" android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"/>
<ImageView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/imageView4"
android:src="@drawable/bal_red"
android:layout_centerVertical="true" android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"/>
<ImageView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/imageView5"
android:src="@drawable/tag_red"
android:layout_below="@+id/imageView9" android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"/>
<ImageView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/imageView6"
android:src="@drawable/mac_red"
android:layout_below="@+id/imageView4" android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"/>
<ImageView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/imageView7"
android:src="@drawable/hin_red"
android:layout_below="@+id/imageView6" android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"/>
<ImageView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/imageView8"
android:src="@drawable/tam_red"
android:layout_below="@+id/imageView7" android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"/>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/imageView9"
android:src="@drawable/sub_red"
android:layout_above="@+id/imageView4" android:layout_alignParentLeft="true"
android:layout_alignParentStart="true" android:layout_marginLeft="42dp"/>
</RelativeLayout>