如何在 Android 中绘制三角形形状?
此示例演示如何在 Android 中绘制三角形形状。
步骤 1 − 在 Android Studio 中创建一个新项目,转到文件 ⇒ 新建项目,然后填写所有必需的详细信息来创建新项目。
步骤 2 − 将以下代码添加到 res/layout/activity_main.xml。
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" android:gravity="center" android:layout_marginTop="30dp" tools:context=".MainActivity"> <ImageView android:layout_width="100dp" android:layout_height="100dp" android:background="@drawable/background"/> </LinearLayout>
在上述代码中,我们已采用图像视图,并将背景添加为 background.xml。
步骤 3 − 将以下代码添加到 drawable/background.xml
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:height="100dp" android:width="100dp" android:viewportWidth="24" android:viewportHeight="24"> <path android:fillColor="#000" android:pathData="M1,21H23L12,2" /> </vector>
让我们尝试运行你的应用程序。我假设你已将实际的安卓移动设备连接至你的电脑。要从 Android Studio 运行应用,请打开你的一个项目活动文件,然后单击工具栏中的运行 图标。选择你的移动设备作为选项,然后查看将显示默认屏幕的移动设备 –
单击 此处下载项目代码
广告