Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/android/189.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Android 安卓-如何构造一个简单的布局_Android - Fatal编程技术网

Android 安卓-如何构造一个简单的布局

Android 安卓-如何构造一个简单的布局,android,Android,当我试图为多个屏幕大小编程时,我仍然不知道如何使用布局。我需要插入一个图像,上面写着“Facebook”,距离顶部有一段距离,文本框稍微向下一点 但是如果我使用边距,它会在更大的屏幕上打乱我的布局 有人能给我解释一下这幅画的布局吗: 您可以通过为不同的屏幕大小创建布局来解决此问题。为此,请为不同的屏幕创建单独的布局文件夹,并将相应的布局放在其中。例如 720dp装置的布局图-sw720dp/ 600dp装置的sw600dp布局图 根据需要更改dp值。 您还可以制作不同尺寸的图像 或 你可以试试这

当我试图为多个屏幕大小编程时,我仍然不知道如何使用布局。我需要插入一个图像,上面写着“Facebook”,距离顶部有一段距离,文本框稍微向下一点

但是如果我使用边距,它会在更大的屏幕上打乱我的布局

有人能给我解释一下这幅画的布局吗:


您可以通过为不同的屏幕大小创建布局来解决此问题。为此,请为不同的屏幕创建单独的布局文件夹,并将相应的布局放在其中。例如

720dp装置的布局图-sw720dp/ 600dp装置的sw600dp布局图

根据需要更改dp值。 您还可以制作不同尺寸的图像

你可以试试这个布局

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/amna2"
android:gravity="center_horizontal"
android:orientation="vertical"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.codeslayers.amnalocations.LoginActivity">




<ImageView
    android:id="@+id/imageView"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:srcCompat="@drawable/amna" />

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

    <android.support.design.widget.TextInputLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="150dp">

        <EditText
            android:id="@+id/id"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:hint="Van Name"
            android:inputType="textEmailAddress"
            android:maxLines="1"
            android:singleLine="true"
            android:textColor="@color/amna3"
            android:textColorHint="@color/amna3"
            android:textColorLink="@color/amna3" />

    </android.support.design.widget.TextInputLayout>

    <android.support.design.widget.TextInputLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <EditText
            android:id="@+id/name"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:hint="Name"
            android:maxLines="1"
            android:singleLine="true"

            android:textColor="@color/amna3"
            android:textColorHint="@color/amna3"
            android:textColorLink="@color/amna3" />

    </android.support.design.widget.TextInputLayout>

    <android.support.design.widget.TextInputLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <EditText
            android:id="@+id/district"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:hint="Destination"
            android:maxLines="1"
            android:singleLine="true"
            android:textColor="@color/amna3"
            android:textColorHint="@color/amna3"
            android:textColorLink="@color/amna3" />

    </android.support.design.widget.TextInputLayout>

    <android.support.design.widget.TextInputLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <EditText
            android:id="@+id/dbname"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:hint="Database Name"
            android:maxLines="1"
            android:singleLine="true"
            android:textColor="@color/amna3"
            android:textColorHint="@color/amna3"
            android:textColorLink="@color/amna3" />

    </android.support.design.widget.TextInputLayout>


    <Button
        android:id="@+id/email_sign_in_button"

        style="?android:attr/buttonBarButtonStyle"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="20dp"
        android:text="@string/action_sign_in"
        android:textColor="@color/amna4" />/
    android:textStyle="bold" />

</LinearLayout>

/
android:textStyle=“bold”/>

您也可以使用不同的dimen.xml(values-sw600dp,values-sw720dp)执行类似操作。因此,您不必复制布局文件

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
                android:orientation="vertical"
                android:layout_width="match_parent"
                android:layout_height="match_parent">

    <TextView
        android:textSize="32dp"
        android:layout_above="@+id/inputFields"
        android:id="@+id/facebook_logo"
        android:gravity="center"
        android:text="Facebook"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"/>

    <LinearLayout
        android:layout_marginTop="45dp"
        android:layout_centerInParent="true"
        android:id="@+id/inputFields"
        android:gravity="center"
        android:paddingLeft="10dp"
        android:paddingRight="10dp"
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <EditText
            android:layout_width="match_parent"
            android:layout_height="wrap_content"/>

        <EditText
            android:layout_width="match_parent"
            android:layout_height="wrap_content"/>


        <Button
            android:text="Login"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"/>

        <TextView
            android:gravity="center"
            android:text="Forgot password ?"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"/>


    </LinearLayout>


    <TextView
        android:id="@+id/signupTxt"
        android:layout_marginBottom="10dp"
        android:layout_alignParentBottom="true"
        android:text="Signup for Facebook"
        android:layout_centerHorizontal="true"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"/>

    <ImageView
        android:layout_alignParentBottom="true"
        android:layout_marginBottom="10dp"
        android:layout_alignParentRight="true"
        android:src="@drawable/rotate_refresh"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"/>


</RelativeLayout>

这似乎需要做很多工作。我有20种不同的布局。所以我需要创造100个?