创建布局并且无法解决ImageView上方和上方的边距
(并且不明白它们出现的原因)
徽标本身没有这些边距
我使用layout_width =“250dp”与按钮相同。
而layout_height =“换行内容”。
布局代码在这里:
<?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,我可以管理吗?
答案 0 :(得分:1)
在ImageView
中设置以下属性:
android:adjustViewBounds="true"