gpt4 book ai didi

android - 如何按中心点对齐 View ?

转载 作者:行者123 更新时间:2023-11-29 01:19:27 25 4
gpt4 key购买 nike

我想创建这个布局

enter image description here

然后我发现了这个

Android - How do I position views in an offset relative to the center/top/bottom (etc.) of their parent?

所以我创建了这个布局

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.myapplication.MainActivity">
<View
android:id="@+id/square"
android:layout_width="100dp"
android:background="#ff0000"
android:layout_centerInParent="true"
android:layout_height="100dp"/>
<ImageView
android:id="@+id/circle"
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_alignTop="@id/square"
android:layout_alignLeft="@id/square"
android:layout_marginRight="25dp"
android:layout_marginBottom="25dp"
android:src="@mipmap/circle" />
</RelativeLayout>

但是布局边距没有任何作用

输出与

相同
<ImageView
android:id="@+id/circle"
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_alignTop="@id/square"
android:layout_alignLeft="@id/square"
android:src="@mipmap/circle" />

如何将一个 View 的中心点与其他 View 的某个点对齐?

最佳答案

你好,我做了一个例子,希望对你有帮助

请检查以下代码的输出

<FrameLayout
android:id="@+id/FrameMove"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="8dp">

<LinearLayout
android:id="@+id/linearFramelayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="5dp"
android:layout_marginTop="10dp"
android:background="@drawable/frame_drawable"
android:gravity="center"
android:orientation="vertical"
android:paddingBottom="-50dp">

<TextView
android:id="@+id/txtMove"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@android:color/white"
android:textSize="20sp"
android:textStyle="bold"/>
</LinearLayout>


<ImageView
android:id="@+id/imgClose"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="end|top"
android:layout_marginRight="-8dp"
android:layout_marginTop="-8dp"
android:src="@drawable/ic_action_close_white"/>

</FrameLayout>

Output

关于android - 如何按中心点对齐 View ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37803860/

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