<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners android:radius="8dp" />
<gradient
android:centerColor="#cccc00"
android:endColor="#00cccc"
android:startColor="#cc00cc" /> <padding
android:bottom="7dp"
android:left="7dp"
android:right="7dp"
android:top="7dp" /> </shape>
相关文章
- android中shape的属性
- android中shape 的使用
- Android中shape的使用 (转载)
- android中shape的使用(android:angle小解)
- vscode中opencv导入图片提示错误error 215 is not subscriptable has no attribute ‘shape‘等
- pytorch自学笔记2:关于tensor的shape初步理解
- python中shape[0]与shape[1]
- cpp课程设计实验题:编写程序,定义抽象基类Shape(形状),由它派生出3个派生类: Circle(圆形)、Rectangle(矩形)和Square 正方形),用函数函数ShowArea分别显
- 编写一个程序,声明抽象基类Shape,由它派生出3个派生类:Circle(圆形)、Rectangle(矩形)、Triangle(三角形),用一个函数printArea分别输出以上三者的面积,3个图形的
- 写一个程序,定义抽象基类Shape,由它派生出3个派生类