gpt4 book ai didi

android - 将顶部 imageView 与 relativeLayout 的中心对齐

转载 作者:行者123 更新时间:2023-11-29 21:09:29 26 4
gpt4 key购买 nike

如何设置 imageView 的布局参数以获得这样的结果? enter image description here

谢谢!!

最佳答案

我准备了一个简单的黑客解决方案。制作一个转储 View 并将您的 View Top 分配给它。

<View
android:id="@+id/view1"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true" />

<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignTop="@id/view1"
android:layout_centerHorizontal="true"
android:src="@drawable/ic_launcher" />

希望这可以帮助你......欢迎任何查询:)

关于android - 将顶部 imageView 与 relativeLayout 的中心对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23428382/

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