我正在尝试将个人资料图像放置在边框顶部,但它不断被线性布局的边框裁剪掉
这是代码
android:id="@+id/linearLayout"
android:layout_width="match_parent"
android:layout_height="60dp"
android:background="@drawable/home_bg"
android:orientation="horizontal"
android:clipChildren="false"
android:clipToPadding="false"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<de.hdodenhof.circleimageview.CircleImageView
android:layout_width="0dp"
android:layout_height="70dp"
android:layout_gravity="center_vertical"
android:layout_marginLeft="15dp"
android:layout_weight="2"
android:src="@drawable/jett_mccandless"
app:civ_border_color="#70757d"
app:civ_border_width="3dp" />```
i tried putting the image inside a frame layout and turned off clipChildren and clipToPadding, but the linear layout keeps cutting it off
代码中的问题是您已将
CircleImageView
的高度设置为 70dp
,但其父级(线性布局)的高度为 60dp
。这就是为什么图像视图在线性布局的边缘被剪裁的原因。因此,即使关闭 clipToPadding
和 clipChildren
,图像视图也会被剪切。
根据您的需要将线性布局的高度更改为
70dp
或将CircleImageView
的高度更改为60dp
。
希望这有帮助。