如何在 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 中
<?xml version="1.0" encoding="utf-8"?> <vector xmlns:android="http://schemas.android.com/apk/res/android" android:autoMirrored="true" android:height="24dp" android:viewportHeight="492.719" android:viewportWidth="492.719" android:width="24dp" > <path android:fillColor="#D80027" android:pathData="M492.719,166.008c0,-73.486 -59.573,-133.056 -133.059,-133.056c-47.985, 0 -89.891,25.484 -113.302,63.569c-23.408,-38.085 -65.332,-63.569 -113.316, -63.569C59.556,32.952 0,92.522 0,166.008c0,40.009 17.729,75.803 45.671, 100.178l188.545,188.553c3.22,3.22 7.587,5.029 12.142,5.029c4.555, 0 8.922,-1.809 12.142,-5.029l188.545,-188.553C474.988,241.811 492.719, 206.017 492.719,166.008z"/> </vector>
让我们尝试运行应用程序。我假设你已经将你的实际 Android 移动设备连接到了电脑。若要从 Android studio 运行应用程序,请打开一个项目的活动文件并从工具栏中单击“运行 ”图标。选择你的移动设备作为选项,然后检查将显示默认屏幕的移动设备 –
单击 此处 下载项目代码
广告