gpt4 book ai didi

android - 在android中绘制自定义可绘制形状

转载 作者:搜寻专家 更新时间:2023-11-01 09:23:45 28 4
gpt4 key购买 nike

我想在 xml 布局中绘制自定义形状,如下所示:

enter image description here

我尝试在 XML 中编写一些代码,但我不明白如何为这个阴影的轮廓赋予阴影效果。

我做了什么:

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">

<item
android:width="20dp"
android:height="20dp"
android:gravity="top|left">
<rotate
android:fromDegrees="45"
android:pivotX="50%"
android:pivotY="50%"
android:toDegrees="45">
<shape android:shape="rectangle">

<corners android:bottomRightRadius="2dp"/>

<gradient android:type="linear" android:angle="270" android:startColor="#ffffff" android:endColor="#ffffff"/>
</shape>

</rotate>
</item>
<item
android:width="120dp"
android:height="36dp"
android:bottom="6dp">
<shape android:shape="rectangle">

<gradient
android:angle="0"
android:endColor="@color/color_white"
android:startColor="@color/color_white"
android:type="linear" />

<corners android:radius="6dp" />

</shape>

</item>
</layer-list>

我得到的结果:

enter image description here

任何人都可以建议我如何像上面提到的图片那样给轮廓添加阴影?或任何其他解决方案,如 9 补丁图像。我怎样才能画出这样的 9 block 图像?

最佳答案

更好的方法不要使用 layer-list

创建整个形状
  • 使用它的主要缺点是你需要给 shape 固定的 hightwidth

使用简单的方法只需使用 layer-list 创建顶部箭头,然后使用下面的示例

试试这个

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:orientation="vertical">

<ImageView
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_marginStart="10dp"
android:src="@drawable/test" />


<LinearLayout
android:id="@+id/rootView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@android:color/white"
android:orientation="vertical">


<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="5dp"
android:text=" Lorem ipsum dolor sit amet, consectetur adipiscing elit"
android:textColor="@color/colorAccent" />

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="5dp"
android:text=" Lorem ipsum dolor sit amet, consectetur adipiscing elit"
android:textColor="@android:color/black" />


</LinearLayout>


</LinearLayout>

@drawable/test"

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<rotate
android:fromDegrees="45"
android:pivotX="-40%"
android:pivotY="87%"
android:toDegrees="45">
<shape android:shape="rectangle">
<stroke
android:width="10dp"
android:color="@android:color/white" />
<solid android:color="@android:color/white" />
</shape>
</rotate>
</item>
</layer-list>

输出

enter image description here

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

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