【问题标题】:Do I need to change my xml code for supporting all screen size android devices?我是否需要更改我的 xml 代码以支持所有屏幕尺寸的 android 设备?
【发布时间】:2020-03-08 14:44:56
【问题描述】:

我已经为不同的屏幕尺寸创建了布局,这是我的默认布局的 xml 代码 但是任何人请告诉我我应该怎么做才能支持任何屏幕尺寸的 android 设备的布局。

我需要更改我的 xml 代码吗? 要么 只是我需要修改我的xml代码?

请告诉我,以便我可以解决我的问题

xlm

<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:app="http://schemas.android.com/apk/res-auto">
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:padding="5dp"
        android:orientation="vertical">
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/Login"
            android:textSize="40sp"
            android:layout_marginTop="40dp"
            android:fontFamily="sans-serif-black"
            android:layout_gravity="center"/>

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/nice"
            android:layout_marginTop="40dp"
            android:textSize="30sp"/>

        <com.google.android.material.textfield.TextInputLayout
            android:id="@+id/textInputLayoutUsername"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:errorEnabled="true"
            app:errorTextAppearance="@style/ErrorStyleNormal"
            android:padding="5dp"
            android:layout_marginTop="30dp"
            app:hintTextAppearance="@style/ErrorStyleNormal">
            <com.google.android.material.textfield.TextInputEditText
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:textSize="25sp"
                android:hint="Username"
                />
        </com.google.android.material.textfield.TextInputLayout>

        <com.google.android.material.textfield.TextInputLayout
            android:id="@+id/textInputLayoutPassword"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:padding="5dp"
            app:errorEnabled="true"
            app:passwordToggleEnabled="true"
            app:errorTextAppearance="@style/ErrorStyleNormal"
            android:layout_marginTop="20dp"
            app:hintTextAppearance="@style/ErrorStyleNormal"
            app:counterTextAppearance="@style/CounterStyleNormal">
            <com.google.android.material.textfield.TextInputEditText
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:hint="Password"
                android:textSize="25sp"
                android:inputType="textPassword"/>
        </com.google.android.material.textfield.TextInputLayout>

        <TextView
            android:id="@+id/textViewForgotPassword"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="end"
            android:layout_marginEnd="15dp"
            android:layout_marginRight="15dp"
            android:text="@string/ForgotPassword"
            android:textSize="15sp" />

        <androidx.cardview.widget.CardView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            app:cardCornerRadius="25dp"
            android:elevation="5dp"
            android:padding="10dp"
            android:layout_marginTop="30dp">
            <RelativeLayout
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:padding="5dp">
                <ImageView
                    android:id="@+id/image"
                    android:layout_width="60dp"
                    android:layout_height="60dp"
                    android:src="@drawable/ic_arrow_forward"/>
                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="@string/Login"
                    android:layout_toEndOf="@+id/image"
                    android:layout_centerVertical="true"
                    android:textSize="25sp"
                    android:layout_marginRight="10dp"
                    android:layout_marginEnd="10dp"
                    android:fontFamily="sans-serif-black"
                    android:layout_toRightOf="@+id/image" />
            </RelativeLayout>
        </androidx.cardview.widget.CardView>

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textSize="20sp"
            android:text="@string/To_Join_With"
            android:layout_gravity="center"
            android:layout_marginTop="20dp"
            android:textColor="@android:color/black"/>
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textSize="20sp"
            android:text="@string/Click_here"
            android:layout_gravity="center"
            android:textColor="@android:color/holo_blue_bright"/>
    </LinearLayout>

</androidx.constraintlayout.widget.ConstraintLayout>

【问题讨论】:

    标签: android android-studio android-layout


    【解决方案1】:

    如果你想支持不同的屏幕尺寸,那么使用https://developer.android.com/reference/android/support/annotation/Dimension 为不同的屏幕提供不同尺寸的元素。如果你需要在不同的屏幕上进行不同的元素布局,那么你可以为不同的屏幕尺寸创建不同的xml文件Android layouts for different screen sizes

    【讨论】:

      【解决方案2】:

      我编辑了您的 XML,因此它可能是学习如何使用 ConstraintLayout 的良好开端。查看 ConstraintLayout 的教程 (constraintlayout.com)

      1. 不要将 match_parent 与 ConstraintLayout 一起使用,我们只有 0dp (match_constraint) 和 wrap_conent
      2. 不要用不必要的嵌套 ViewGroups (LinearLayout) 弄乱 XML
      3. 使用边距或填充时,最好使用基于 8 的数字(8 - 16 - 24 - 32 - ...)
      4. 对按钮使用 CardView 是错误的,请查看 material.io 中的 MaterialButton 文档
      <?xml version="1.0" encoding="utf-8"?>
      <androidx.core.widget.NestedScrollView
          xmlns:android="http://schemas.android.com/apk/res/android"
          android:layout_width="match_parent"
          android:layout_height="match_parent">
      
          <androidx.constraintlayout.widget.ConstraintLayout xmlns:app="http://schemas.android.com/apk/res-auto"
              android:layout_width="match_parent"
              android:layout_height="match_parent">
      
              <TextView
                  android:id="@+id/textView"
                  android:layout_width="0dp"
                  android:layout_height="wrap_content"
                  android:gravity="center"
                  android:text="@string/Login"
                  android:textSize="40sp"
                  app:layout_constraintEnd_toEndOf="parent"
                  app:layout_constraintStart_toStartOf="parent"
                  app:layout_constraintTop_toTopOf="parent" />
      
              <TextView
                  android:id="@+id/textView_loginMessage"
                  android:layout_width="wrap_content"
                  android:layout_height="wrap_content"
                  android:layout_marginTop="32dp"
                  android:text="@string/nice"
                  android:textSize="32sp"
                  app:layout_constraintStart_toStartOf="parent"
                  app:layout_constraintTop_toBottomOf="@+id/textView" />
      
              <com.google.android.material.textfield.TextInputLayout
                  android:id="@+id/textInputLayoutUsername"
                  android:layout_width="0dp"
                  android:layout_height="wrap_content"
                  android:layout_marginTop="24dp"
                  android:padding="5dp"
                  app:errorEnabled="true"
                  app:errorTextAppearance="@style/ErrorStyleNormal"
                  app:hintTextAppearance="@style/ErrorStyleNormal"
                  app:layout_constraintEnd_toEndOf="parent"
                  app:layout_constraintStart_toStartOf="parent"
                  app:layout_constraintTop_toBottomOf="@id/textView_loginMessage">
      
                  <com.google.android.material.textfield.TextInputEditText
                      android:layout_width="match_parent"
                      android:layout_height="wrap_content"
                      android:hint="Username"
                      android:textSize="25sp" />
      
              </com.google.android.material.textfield.TextInputLayout>
      
              <com.google.android.material.textfield.TextInputLayout
                  android:id="@+id/textInputLayoutPassword"
                  android:layout_width="match_parent"
                  android:layout_height="wrap_content"
                  android:layout_marginTop="24dp"
                  android:padding="5dp"
                  app:counterTextAppearance="@style/CounterStyleNormal"
                  app:errorEnabled="true"
                  app:errorTextAppearance="@style/ErrorStyleNormal"
                  app:hintTextAppearance="@style/ErrorStyleNormal"
                  app:layout_constraintEnd_toEndOf="parent"
                  app:layout_constraintStart_toStartOf="parent"
                  app:layout_constraintTop_toBottomOf="@id/textInputLayoutUsername"
                  app:passwordToggleEnabled="true">
      
                  <com.google.android.material.textfield.TextInputEditText
                      android:layout_width="match_parent"
                      android:layout_height="wrap_content"
                      android:hint="Password"
                      android:inputType="textPassword"
                      android:textSize="25sp" />
              </com.google.android.material.textfield.TextInputLayout>
      
              <TextView
                  android:id="@+id/textViewForgotPassword"
                  android:layout_width="wrap_content"
                  android:layout_height="wrap_content"
                  android:layout_gravity="end"
                  android:layout_marginTop="24dp"
                  android:layout_marginEnd="16dp"
                  android:text="@string/ForgotPassword"
                  android:textSize="15sp"
                  app:layout_constraintEnd_toEndOf="parent"
                  app:layout_constraintTop_toBottomOf="@+id/textInputLayoutPassword" />
      
              <com.google.android.material.button.MaterialButton
                  android:id="@+id/materialButton"
                  style="@style/Widget.MaterialComponents.Button.TextButton.Icon"
                  android:layout_width="wrap_content"
                  android:layout_height="wrap_content"
                  android:layout_marginTop="32dp"
                  app:icon="@color/yourArrowIcon"
                  app:iconGravity="start"
                  android:text="yourText"
                  app:layout_constraintEnd_toEndOf="parent"
                  app:layout_constraintStart_toStartOf="parent"
                  app:layout_constraintTop_toBottomOf="@+id/textViewForgotPassword" />
      
              <TextView
                  android:id="@+id/textView_join"
                  android:layout_width="wrap_content"
                  android:layout_height="wrap_content"
                  android:layout_gravity="center"
                  android:layout_marginTop="16dp"
                  android:text="@string/To_Join_With"
                  android:textColor="@android:color/black"
                  android:textSize="20sp"
                  app:layout_constraintEnd_toEndOf="parent"
                  app:layout_constraintStart_toStartOf="parent"
                  app:layout_constraintTop_toBottomOf="@id/materialButton" />
      
              <TextView
                  android:layout_width="wrap_content"
                  android:layout_height="wrap_content"
                  android:layout_gravity="center"
                  android:layout_marginTop="16dp"
                  android:text="@string/Click_here"
                  android:textColor="@android:color/holo_blue_bright"
                  android:textSize="20sp"
                  app:layout_constraintEnd_toEndOf="parent"
                  app:layout_constraintStart_toStartOf="parent"
                  app:layout_constraintTop_toBottomOf="@id/textView_join" />
      
          </androidx.constraintlayout.widget.ConstraintLayout>
      
      </androidx.core.widget.NestedScrollView>
      

      【讨论】:

        猜你喜欢
        • 1970-01-01
        • 1970-01-01
        • 2012-01-25
        • 1970-01-01
        • 2012-03-17
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        相关资源
        最近更新 更多