如何在 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>

在上面的代码中,我们取了 imageview,并且添加了 background.xml 作为背景。

步骤 3 − 将以下代码添加到 drawable/ background.xml

<vector xmlns:android="http://schemas.android.com/apk/res/android"
   android:width="24dp"
   android:height="24dp"
   android:autoMirrored="true"
   android:viewportWidth="512"
   android:viewportHeight="512">
   <path
      android:fillColor="#D80027"
      android:pathData="M512,198.525l-176.891,-25.704L256,12.53l-79.108,160.291L0,
                        198.525l128,124.769L97.784,499.47L256,416.291l158.217,
                        83.179l-30.219,-176.176L512,198.525zM256,376.749l-111.731,
                        58.74l21.338,-124.415l-90.393,-88.111l124.92,-18.152L256,
                        91.613l55.867,113.198l124.918,18.152l-90.395,88.111l21.34,
                        124.415L256,376.749z" />
</vector>

让我们尝试运行你的应用程序。我假设你已将实际的 Android 移动设备连接到你的计算机。要从 Android Studio 运行应用程序,请打开项目的一个活动文件,然后单击工具栏中的运行  图标。选择你的移动设备作为选项,然后查看你的移动设备上将显示的默认屏幕 –

点击 此处 下载项目代码

更新日期:27-6 月-2020

1K+ 查看次数

开启您的职业

完成课程即可获得认证

开始
广告
© . All rights reserved.