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

<?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

Bài đăng phổ biến từ blog này

Android - Date Time - Lấy giá trị ngày, giờ theo định dạng tùy biến trong Android Studio

Android - Custom SearchView - Tạo khung tìm kiếm đơn giản trong Android Studio

Android - Image - Take Photo, Choose Photo from Gallery - Xử lý chụp ảnh, lấy ảnh trong Android Studio