我想为我的应用创建此形状,但无法在编辑器中创建此形状
答案 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"
/>