首先,这不是一个重复的问题。我想使用drawable在android中实现此自定义设计。如何实现图像中的弧光效果?
现在为止我做了什么:
<?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>
问题: 图像与背景重叠。我还将 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,但不知道如何防止重叠。
答案 0 :(得分:0)
在这里您可以解决问题。只需替换颜色即可。
<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>
您可以通过旋转标签调整可绘制对象的角度和高度。希望对您有帮助。