繁体   English   中英

宽高比是否等于Android?

[英]Aspect ratio equivalent for Android?

我想添加一个视图,其前/后边距为12dp,屏幕宽高比为4:1。 来自iOS背景,我想得到这样的结果:

在此处输入图片说明

现在我想在Android上做同样的事情,而我只限于宽高比:

<?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">

    <View
        android:layout_width="match_parent"
        <!-- android:layout_height="{what to do here?}" -->
        android:layout_centerInParent="true"
        android:layout_marginStart="12dp"
        android:layout_marginEnd="12dp"
        android:background="@color/my_blue_color" />

</RelativeLayout>

为了获得期望的比例,我必须在此处更改视图的高度吗?

谢谢你的帮助。

您可以使用ConstraintLayout来实现

首先添加依赖项

dependencies {
    implementation'com.android.support.constraint:constraint-layout:1.0.2'
}

这是一个例子

     <?xml version="1.0" encoding="utf-8"?>
     <android.support.constraint.ConstraintLayout 
            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"
            tools:context="com.burhanrashid52.unittestsample.MainActivity">


            <View
                android:layout_width="0dp"
                android:layout_height="0dp"
                android:layout_marginEnd="12dp"
                android:layout_marginStart="12dp"
                android:layout_marginTop="12dp"
                android:background="@android:color/holo_blue_dark"
                app:layout_constraintDimensionRatio="w,1:4"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintStart_toStartOf="parent"
                app:layout_constraintTop_toTopOf="parent" />


      </android.support.constraint.ConstraintLayout>

输出量

Ypu需要使用ConstraintLayout:

<android.support.constraint.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <View
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:layout_marginEnd="12dp"
        android:layout_marginLeft="12dp"
        android:layout_marginRight="12dp"
        android:layout_marginStart="12dp"
        android:layout_marginTop="12dp"
        app:layout_constraintDimensionRatio="4:1"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"/>

</android.support.constraint.ConstraintLayout>

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM