Android - Custom Shape, Circle , Triangle with Drawable - Tạo các hình khối trên Android
Vẽ các hình khối khác nhau bằng cách tạo file xml trong thư mục drawable
1. Tạo hình tam giác
2. Tạo hình tròn
... còn tiếp tục cập nhật....
1. Tạo hình tam giác
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<rotate
android:fromDegrees="45"
android:pivotX="-40%"
android:pivotY="87%"
android:toDegrees="45">
<shape android:shape="rectangle">
<solid android:color="@color/your_color" />
</shape>
</rotate>
</item>
</layer-list>
2. Tạo hình tròn
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">> <solid android:color="#008BD4" />
<size
android:width="32dp"
android:height="32dp" />
</shape>
... còn tiếp tục cập nhật....
Nhận xét
Đăng nhận xét