Skip to content

Instantly share code, notes, and snippets.

View Radiokot's full-sized avatar
🐍

Oleg Koretsky Radiokot

🐍
View GitHub Profile
@Radiokot
Radiokot / rounded_corners_progress_drawable.xml
Created October 27, 2023 08:55
Android horizontal progress bar with rounded corners
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:id="@android:id/background"
android:bottom="1dp"
android:left="1dp"
android:right="1dp"
android:top="1dp">
<!-- 1 dp padding makes the background thinner -->
<shape>
<corners android:radius="1dp" />