4K 分辨率 android 设备中的额外间距问题

Extra spacing problem in 4K resolution android device

我正在开发聊天应用程序android。它在所有设备上都运行良好。

但是三星s8+和一加6t等4K分辨率的设备,它会自动在右侧留出额外的间距。 我没有给出任何边距和填充。

参考[].

我的视图文件是这样的:

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="end"
        android:layout_marginStart="64dp"
        android:layout_marginLeft="64dp"
        android:layout_marginTop="8dp"
        android:layout_marginBottom="8dp"
        android:layout_marginEnd="12dp"
        android:layout_marginRight="12dp"
        android:background="@drawable/sender_bg"
        android:gravity="center_vertical"
        android:orientation="vertical"
        android:padding="16dp">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:fontFamily="@font/karla_regular"
            android:text="Yes, and it will be safe. My promise"
            android:textColor="@color/colorPrimary"
            android:textSize="16sp" />

    </LinearLayout>
</layout>

谁能帮我解决一下。提前致谢

使线性布局宽度与父级匹配

 <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="end"
        android:layout_marginStart="64dp"
        android:layout_marginLeft="64dp"
        android:layout_marginTop="8dp"
        android:layout_marginBottom="8dp"
        android:layout_marginEnd="12dp"
        android:layout_marginRight="12dp"
        android:background="@drawable/sender_bg"
        android:gravity="center_vertical"
        android:orientation="vertical"
        android:padding="16dp">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:fontFamily="@font/karla_regular"
            android:text="Yes, and it will be safe. My promise"
            android:textColor="@color/colorPrimary"
            android:textSize="16sp" />

    </LinearLayout>
</layout>