gpt4 book ai didi

android - 自定义可绘制角度android

转载 作者:行者123 更新时间:2023-11-30 05:04:39 25 4
gpt4 key购买 nike

首先,这不是一个重复的问题。我想使用 drawable 在 android 中实现这种自定义设计。如何实现图中的圆弧效果??

enter image description here

到目前为止我做了什么:

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<rotate
android:fromDegrees="-5"
android:pivotX="0%"
android:pivotY="100%"
android:toDegrees="50">
<shape android:shape="rectangle">
<solid android:color="@color/light_pink" />
<corners android:bottomLeftRadius="10dp"
android:bottomRightRadius="20dp"/>
</shape>
</rotate>
</item>
<item android:bottom="50dp">
<rotate
android:fromDegrees="0"
android:pivotX="10%"
android:pivotY="-100%"
android:toDegrees="0">
<shape android:shape="rectangle">
<solid android:color="@color/light_pink" />
</shape>
</rotate>
</item>

</layer-list>

输出:enter image description here

问题:图像与背景重叠。我还将 clipChildren 设置为父布局,但没有效果。

我的布局

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">

<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/top_arc"
android:clipChildren="true">

<ImageView
android:layout_width="match_parent"
android:layout_height="400dp"
android:src="@drawable/no_image_male" />
</RelativeLayout>

</RelativeLayout>

仅供引用:我有相同的 SVG,但不知道如何防止重叠。

最佳答案

这里是解决方案。只需更换颜色即可。

<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/top_rl_gradient"/>
<item
android:bottom="-200dp"
android:left="0dp"
android:right="-300dp"
android:top="200dp">
<rotate
android:fromDegrees="-10"
android:pivotX="0%"
android:pivotY="100%">
<shape
android:shape="rectangle">
<solid
android:color="@color/white"/>
</shape>
</rotate>
</item>

您可以通过旋转标签调整可绘制对象的角度和高度。希望对您有所帮助。

关于android - 自定义可绘制角度android,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54780016/

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