如何在android xml中进行响应式布局?

时间:2018-06-26 02:37:50

标签: android android-layout

我正在尝试创建一个包含图像的简单布局。这是我现在要做的

<RelativeLayout
    android:layout_marginStart="2mm"
    android:layout_marginTop="20sp"
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content">

    <ImageView
        android:id="@+id/myImage"
        android:layout_width="27mm"
        android:layout_height="30mm"
        android:layout_alignParentStart="true"
        android:layout_alignParentTop="true"
         />

</RelativeLayout>

这是2个设备中的结果

在像素2 api中

enter image description here

这是联系4

enter image description here

图像在RecyclerView内部。这是我在片段中设置的方式

layoutManager = new LinearLayoutManager(getContext(), LinearLayoutManager.HORIZONTAL, false);
myListArrival.setLayoutManager(layoutManager);

如您在像素2中看到的,几乎下一张图片的一半显示在关系4中,而不是向上出现。也许是一个空白。

顺便说一句,我正在使用android studio模拟器

我正在使用MM,因为这个http://www.mysamplecode.com/2011/06/android-units-of-measurements.html

所以我的问题是,如何使两个设备的图像大小和边距相同?我该如何实现?

使用DP进行更新。

现在,我现在只显示2张图片

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout

    android:layout_marginTop="20sp"
    android:layout_marginStart="20dp"
    android:layout_marginEnd="10dp"
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content">

    <ImageView
        android:id="@+id/myImage"
        android:layout_width="170dp"
        android:layout_height="170dp"

         />

</RelativeLayout>

结果

Nexus 4

enter image description here

像素2

enter image description here

6 个答案:

答案 0 :(得分:1)

  

我已经使用约束布局来实现您的需求。

<?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"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
        <ImageView
            android:id="@+id/imageView1"
            android:layout_width="0dp"
            android:layout_height="0dp"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintEnd_toStartOf="@+id/imageView2"
            android:src="@mipmap/ic_launcher"/>

        <ImageView
            android:id="@+id/imageView2"
            android:layout_width="0dp"
            android:layout_height="0dp"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toEndOf="@+id/imageView1"
            app:layout_constraintTop_toTopOf="parent"
            app:layout_constraintBottom_toBottomOf="parent"
            android:src="@mipmap/ic_launcher"/>
    </android.support.constraint.ConstraintLayout>

答案 1 :(得分:0)

第一件事是永远不要使用hardCoding设置任何小部件使用match_parent和wrap_content而不是整数。 如果要在某处使用特定的高度和宽度,请使用密度像素(dp)而不是毫米和厘米,并使用(sp)表示文本。

答案 2 :(得分:0)

并非所有设备都支持静态高度宽度。

将imageview的宽度和高度更改为“ match_parent”,并尝试将scaleType设置为适合屏幕大小

<ImageView
android:id="@+id/image"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="fitXY"
android:src="@drawable/icon" />

答案 3 :(得分:0)

android推荐的简单方法是为不同屏幕尺寸的布局创建单独的布局文件。 请检查一下 https://developer.android.com/training/multiscreen/screensizes

答案 4 :(得分:0)

好的。感谢所有回答问题的人。我已经获得了想要实现的目标(至少会更好)。这是我的工作。

首先我改变

layoutManager = new LinearLayoutManager(getContext(), LinearLayoutManager.HORIZONTAL, false);
myListArrival.setLayoutManager(layoutManager);

mGridLayoutManager = new GridLayoutManager(getActivity(), 2);
myListArrival.setLayoutManager(mGridLayoutManager);

第二个更改是在我的XML中。这是更改

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout

android:layout_marginTop="20sp"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
    android:layout_marginStart="5dp"
    android:layout_marginEnd="5dp"
android:layout_height="wrap_content">

<ImageView
    android:id="@+id/myImage"
    android:layout_width="170dp"
    android:layout_height="170dp"
    />

</RelativeLayout>

最后一次更改是在我的parentlayout中。

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@id/linearHot"
        android:layout_marginBottom="3dp"
        android:layout_marginStart="30dp"
        android:layout_marginTop="3dp"
        android:orientation="vertical">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="10sp"
            android:text="Our Products"
            android:textColor="@color/colorAccent"
            android:textSize="15sp" />

        <android.support.v7.widget.RecyclerView
            android:id="@+id/product_list"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="10dp" />

    </LinearLayout>

所以这是结果

.querySelector

左侧是像素点,右侧是像素2

答案 5 :(得分:0)

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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:background="#000"
    android:layout_height="match_parent"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    tools:context=".MainActivity"
    tools:showIn="@layout/app_bar_main">

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

        <TextView
            android:layout_width="match_parent"
            android:layout_marginTop="4dp"
            android:background="#fff"
            android:layout_height="1dp" />
    <ImageView
        android:layout_width="match_parent"
        android:background="@drawable/ww1"
        android:scaleType="center"
        android:id="@+id/walpaper1"
        android:layout_gravity="center"
        android:layout_height="200dp" />
</LinearLayout>

</RelativeLayout>