Android ImageView 边距

Android ImageView margins

正在创建布局,无法解决 ImageView 上方和上方的边距
(而且不明白为什么会出现)。
徽标本身没有这些边距。
我使用与按钮相同的 layout_width="250dp"。
并且 layout_height="wrap content".

布局代码在这里:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/menu_background"
    android:gravity="center"
    android:layout_gravity="center"
    android:orientation="vertical" 
    >

    <ImageView 
        android:layout_width="250dp"
        android:layout_height="wrap_content"
        android:src="@drawable/game_logo"
         />

    <Button
        android:id="@+id/start_button"
        style="@style/menuButtonStyle"
        android:layout_margin="5dp"
        android:text="@string/start_button" />

    <Button
        android:id="@+id/result_button"
        style="@style/menuButtonStyle"
        android:layout_margin="5dp"
        android:text="@string/high_score" />

    <Button
        android:id="@+id/settings_button"
        style="@style/menuButtonStyle"
        android:layout_margin="5dp"
        android:text="@string/settings" />

    <Button
        android:id="@+id/about_button"
        style="@style/menuButtonStyle"
        android:layout_margin="5dp"
        android:text="@string/about_button" />

</LinearLayout>

我可以不在 dp 中设置 ImageView 的 layout_height 来管理它吗?

在您的 ImageView 中设置以下 属性:

android:adjustViewBounds="true"