gpt4 book ai didi

android - 创建直角三角形的可绘制形状

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

我正在尝试找出如何使用可绘制 xml ( <shape> ) 创建一个如下所示的直角三角形(但填充颜色不带黑线):

enter image description here

我尝试从对角线减半矩形的角度思考,但仍然......找不到如何实现它。

Android drawable xml 是否可行?

最佳答案

给你:

创建你的 xml 文件

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main10"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.ul_ts.emvsdktester.drawabletraining.Main10Activity">
<LinearLayout
android:layout_width="200dp"
android:layout_height="200dp"
android:background="@drawable/my_shape6"></LinearLayout>
</RelativeLayout>

在 drawable 文件夹中创建 my_shape6.xml

<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="100dp"
android:height="100dp"
android:viewportHeight="100"
android:viewportWidth="100">

<path
android:fillColor="#32c2b6"
android:pathData="M0 20 L100 0 L100 20 Z"
android:strokeColor="#9a1616" />

</vector>

结果

enter image description here

关于android - 创建直角三角形的可绘制形状,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41667192/

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