मैं इस प्रगति बार डिजाइन को प्राप्त करने की कोशिश कर रहा हूं:
वर्तमान कोड जो मैंने इसे बनाया है:
यह कोड है:
<item android:id="@android:id/background">
<shape>
<corners android:radius="8dp"/>
<solid android:color="@color/dirtyWhite"/>
</shape>
</item>
<item android:id="@android:id/progress">
<clip>
<shape>
<corners android:radius="8dp"/>
<solid android:color="@color/colorPrimaryDark"/>
</shape>
</clip>
</item>
मेरी प्रगति बार:
<ProgressBar
android:id="@+id/activeProgress"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="300dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:progress="10"
android:progressDrawable="@drawable/rounded_corners_progress_bar"/>
मैं जोड़ने की कोशिश की <size>
पर विशेषता <shape>
में <clip
प्रगति थोड़ा छोटे आकार बनाने के लिए, लेकिन यह काम नहीं किया। इसके अलावा, प्रगति पट्टी समतल है और मैं डिजाइन के अनुसार घुमावदार होना चाहता हूं। डिज़ाइन को प्राप्त करने के लिए मुझे क्या बदलने की आवश्यकता है?