gpt4 book ai didi

android - 另一个矩形内的矩形

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:51:13 26 4
gpt4 key购买 nike

是否可以像图片上那样从 xml 创建可绘制对象?第一个矩形包含第二个矩形。

如果是,请向我解释如何。

drawable

最佳答案

如果你想要简单的矩形,你可以使用 LayerList有两个形状作为内容:

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="rectangle">
<solid android:color="#a1a1a1" />
</shape>
</item>
<item android:top="5dp" android:right="5dp" android:bottom="5dp"
android:left="5dp">
<shape android:shape="rectangle">
<solid android:color="#f1f1f1" />
</shape>
</item>
</layer-list>

关于android - 另一个矩形内的矩形,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7540714/

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