gpt4 book ai didi

android - ImageView 对齐问题

转载 作者:行者123 更新时间:2023-11-29 15:03:08 25 4
gpt4 key购买 nike

我想用 ImageView 和相对布局实现我的布局,如图所示。

enter image description here

我尝试使用此代码但不起作用。

<RelativeLayout
android:id="@+id/image"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/textview_ratting"
android:layout_margin="5dp">

<de.hdodenhof.circleimageview.CircleImageView
android:id="@+id/imageView"
android:layout_width="70dp"
android:layout_height="70dp"
android:layout_centerHorizontal="true"
android:src="@drawable/icon"/>
</RelativeLayout>

最佳答案

这对我有用...提供负 paddingTop 等于 imageview 大小的一半。

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="200dp"
android:layout_marginTop="70dp"
android:background="@color/colorAccent" />
<ImageView
android:id="@+id/widget_title_icon"
android:paddingTop="-70dp"
android:layout_width="140dp"
android:layout_height="140dp"
android:layout_gravity="top|center_horizontal"
android:adjustViewBounds="true"
android:contentDescription="@string/action_settings"
android:scaleType="fitStart"
android:src="@mipmap/ic_launcher" />
</FrameLayout>

this is the image screenshot

关于android - ImageView 对齐问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41469410/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com