用android studio创建自定义形状?

时间:2019-02-13 04:16:15

标签: android

我想为我的应用创建此形状,但无法在编辑器中创建此形状

1 个答案:

答案 0 :(得分:3)

创建一个名为bg_custom_textview.xml的可绘制对象

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
   android:shape="rectangle">

<solid android:color="@color/SomeColor"
        />
<corners
        android:topLeftRadius="10dp"
        android:topRightRadius="10dp"
        />
</shape>

使用它作为您的textview背景,

<TextView
android:background="@drawable/bg_custom_textview"
/>