在其他手机上运行时的布局更改

时间:2017-02-04 10:42:21

标签: android xml

 <?xml version="1.0" encoding="utf-8"?>
<ScrollView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:fillViewport="true">
    <RelativeLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" android:background="#fff">

        <!--  Header  Starts-->
        <LinearLayout android:id="@+id/header"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:background="@drawable/header_gradient"
            android:paddingTop="5dip"
            android:paddingBottom="5dip">
            <!-- Logo Start-->
            <TextView
                android:text="Driver Info "
                android:layout_width="fill_parent"
                android:gravity="center"
                android:textSize="25dp"
                android:textColor="#ffffff"
                android:layout_height="wrap_content"
                android:layout_marginLeft="10dip"/>
            <!-- Logo Ends -->
        </LinearLayout>
        <!--  Header Ends -->
        <!-- Footer Start -->

        <!-- Footer Ends -->

        <!-- Registration Form -->
        <LinearLayout
            android:id="@+id/r1"
            xmlns:android="http://schemas.android.com/apk/res/android"
            android:orientation="horizontal"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:padding="10dip"
            android:gravity="center"
            android:weightSum="3"

            android:layout_below="@id/header">

            <Button android:id="@+id/profile"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginTop="10dip"
                android:textColor="#FFFFFF"
                android:background="@drawable/btn_style"
                android:text="Upload Licence copy"
                android:layout_weight="1
                "/>

            <Button android:id="@+id/btnRegister"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginTop="10dip"
                android:textColor="#FFFFFF"
                android:background="@drawable/btn_style"
                android:layout_weight="1
                "
                android:text="Upload Licence copy"/>
            <!-- Full Name Label -->

            <!--  Email Label -->

            <!-- Password Label -->
            <!--Mobile edittex-->
            <!--age lable-->
            <!-- Register Button -->

            <!-- Link to Login Screen -->


        </LinearLayout>

<LinearLayout
    android:layout_below="@+id/r1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:id="@+id/pic"
    android:orientation="horizontal"
    android:gravity="center_horizontal"
    android:layout_centerHorizontal="true"
    android:layout_centerVertical="true"

    android:weightSum="1"
    >
        <ImageView
            android:layout_below="@+id/r1"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:maxWidth="42dp"
            android:maxHeight="42dp"
            android:layout_weight="0.5"



            android:src="@drawable/lincense"
            android:id="@+id/imageView3" />
    <ImageView
        android:layout_below="@+id/r1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:maxWidth="42dp"
        android:maxHeight="42dp"
        android:layout_weight="0.5"


        android:src="@drawable/lincense"
        android:id="@+id/imageView4" />


</LinearLayout>

        <Button android:id="@+id/signup"
            android:layout_below="@+id/pic"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="10dip"
            android:textColor="#FFFFFF"

            android:background="@drawable/btn_style"

                android:layout_centerHorizontal="true"
            android:text="Complete the process"/>

        <!-- Registration Form Ends -->
    </RelativeLayout>
</ScrollView>

enter image description here

当我选择其他设备并检查我的布局时,它会像我在图片中提到的那样显示。任何机构都知道如何为每个设备制作它。什么是最好的解决方案。 。我尝试了很多东西。 。但没有理清

1 个答案:

答案 0 :(得分:0)

尝试将其放在清单上:

<supports-screens 
        android:resizeable="true"
        android:smallScreens="true"
        android:normalScreens="true"
        android:largeScreens="true"
        android:anyDensity="true"
        />

或者你可以尝试这个链接:

Supporting Multiple Screen Sizes

Supporting Different Densities