将图像按钮定位在多个分辨率上,Android

时间:2013-04-02 07:53:56

标签: android

我在AbsoluteLayout上有一些图像按钮,因为它们需要放在ImageView的某些部分上。

我希望在更改屏幕尺寸分辨率时,图像按钮将保留在ImageView的正确位置。

问题在于,如果我更改分辨率,所有图像按钮都会从他们的位置移动。

也许有一种方法可以放置没有AbsoluteLayout的图像按钮 ImageView的比率或百分比,因为我知道AbsoluteLayout根本不被推荐。

感谢您的帮助

这是我的xml代码:

<?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:id="@+id/RelativeLayout1"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal"
    tools:context=".G" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_toLeftOf="@+id/ScrollView1"
        android:orientation="horizontal"
        android:weightSum="100" >

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="15"
            android:orientation="vertical" >

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_toLeftOf="@+id/ScrollView1"
                android:orientation="vertical"
                android:weightSum="100" >

            <AbsoluteLayout
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_alignParentLeft="true"
                android:layout_weight="20"
                android:layout_alignParentTop="true"
                android:layout_toLeftOf="@+id/ScrollView1" >
            <ImageView
                    android:id="@+id/imageView1"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:layout_above="@+id/tvOn"
                    android:layout_alignParentTop="true"
                    android:scaleType="fitXY"
                    android:src="@drawable/t" />

                <ImageButton
                    android:id="@+id/bon"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_x="319dp"
                    android:layout_y="88dp"
                    android:src="@drawable/b_blue" />

                <ImageButton
                    android:id="@+id/bo"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_x="287dp"
                    android:layout_y="125dp"
                    android:src="@drawable/b_blue" />

            </AbsoluteLayout>
                <TextView
                    android:id="@+id/tvOn"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:layout_alignParentBottom="true"
                    android:layout_weight="80" />
            </LinearLayout>


        </LinearLayout>

        <ScrollView
            android:id="@+id/ScrollView1"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_alignParentRight="true"
            android:layout_alignParentTop="true"
            android:layout_weight="85"
            android:scrollbars="vertical" >

            <LinearLayout
                android:id="@+id/rGroup"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:gravity="right"
                android:orientation="vertical" >

                <ToggleButton
                    android:id="@+id/bmD"
                    android:layout_width="match_parent"
                    android:layout_height="60dp" />

                <ToggleButton
                    android:id="@+id/bmCt"
                    android:layout_width="match_parent"
                    android:layout_height="60dp"/>

            </LinearLayout>
        </ScrollView>
    </LinearLayout>
</RelativeLayout>

0 个答案:

没有答案