gpt4 book ai didi

java - 将图标定位在布局上方一半

转载 作者:行者123 更新时间:2023-12-02 13:13:07 25 4
gpt4 key购买 nike

最近,我公司的设计师喜欢在 Android 应用的布局中创建半以上元素。我一直在努力让这些元素表现得尽可能好,但我已经厌倦了。有没有办法像这张图片一样定位 View

Layout假设如果用户触摸行/卡,它就会被“选中”,并且这个黑点图标变得可见(第二次单击当然会使其不可见)。

最佳答案

你可以这样做:

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

<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_toEndOf="@+id/circle_view"
android:background="@android:color/holo_blue_bright">

<android.support.v7.widget.CardView
android:id="@+id/second_view"
android:layout_width="100dp"
android:layout_height="match_parent"/>

</FrameLayout

<View
android:id="@+id/circle_view"
android:layout_width="16dp"
android:layout_height="16dp"
android:background="@android:color/holo_red_dark"
android:layout_marginEnd="-8dp"
android:layout_centerVertical="true"/>

</RelativeLayout>

second_view是circle_view的endOf,所以如果circle_view消失了,second_view将与startOfparent对齐。

circle_view 应该将 marginEnd 设置为其宽度除以二的负值

enter image description here

关于java - 将图标定位在布局上方一半,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43869767/

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