gpt4 book ai didi

android - 有没有办法在 XML 上创建它? 2色盒

转载 作者:数据小太阳 更新时间:2023-10-29 02:38:49 24 4
gpt4 key购买 nike

有没有办法只用 XML 创建这两个框(当然是在图标旁边)

tob 框周围有圆形边框和阴影,但内部分为两部分,一个是粉红色背景,一个是白色背景(它们之间没有描边)

box

最佳答案

创建 2 个 XML 绘图

rect_colored.xml

<shape android:shape="rectangle"
xmlns:android="http://schemas.android.com/apk/res/android">

<solid android:color="@color/colorAccent"/>
<corners android:bottomRightRadius="5dp"
android:topRightRadius="5dp"/>

</shape>

rect_white.xml

<shape android:shape="rectangle"
xmlns:android="http://schemas.android.com/apk/res/android" >
<stroke android:color="@color/colorPrimaryDark"
android:width="2dp"/>
<corners android:radius="5dp"/>
</shape>

适当放置可绘制对象

对于不同的 Root View ,这将以不同的方式工作。为了简单起见,我使用了 ConstraintLayout

<android.support.constraint.ConstraintLayout
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">


<FrameLayout
android:layout_width="0dp"
android:layout_height="40dp"
android:layout_marginRight="8dp"
app:layout_constraintRight_toRightOf="parent"
android:layout_marginLeft="8dp"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintTop_toTopOf="parent"
android:layout_marginTop="8dp"
android:background="@drawable/rect_white"
android:id="@+id/frameLayout"
app:layout_constraintBottom_toBottomOf="parent"
android:layout_marginBottom="8dp">

<!--Content here-->

</FrameLayout>

<FrameLayout
android:layout_width="36dp"
android:layout_height="36dp"
android:layout_marginBottom="0dp"
android:layout_marginRight="2dp"
android:layout_marginTop="0dp"
android:background="@drawable/rect_colored"
app:layout_constraintBottom_toBottomOf="@+id/frameLayout"
app:layout_constraintRight_toRightOf="@+id/frameLayout"
app:layout_constraintTop_toTopOf="@+id/frameLayout">

<!--Content here-->

</FrameLayout>

</android.support.constraint.ConstraintLayout>

输出

enter image description here

关于android - 有没有办法在 XML 上创建它? 2色盒,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46537745/

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