Android:ImageView通过增加保证金最大尺寸变得更小

时间:2018-02-20 21:33:17

标签: java android layout margin relative

我有一个相对布局,我想在其中显示一个ImageView和一个带背景图像的TextView。

如果我没有使用任何margin-top,它的工作方式应该如何,但如果我增加ImageView的上边距,Image会变小。

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

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <TextView
        android:id="@+id/playerNameEnd"
        android:layout_width="200dp"
        android:layout_height="80dp"
        android:background="@drawable/casino2"
        android:gravity="center"
        android:text="Player"
        android:textColor="@color/cream"
        android:textSize="26sp" />

    <ImageView
        android:id="@+id/roulette_EndPic"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="40dp"
        app:srcCompat="@drawable/casino" />
</RelativeLayout>

1 个答案:

答案 0 :(得分:0)

使用android:paddingTop="40dp"

而不是marginTop