AndroidでProgressBarの「進行状況」の高さを変更することはできますか?この効果を得るには、「背景線」よりも大きいのですか?進捗バーの「進捗線」の高さを変更するにはどうすればよいですか?
私は私のカスタムprogressBarDrawableに背景や進捗状況の項目にサイズを設定しようとしたが、動作するようには思えません。ここで
<ProgressBar
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:indeterminate="false"
android:max="100"
android:progress="50"
android:paddingTop="10dp"
android:paddingBottom="10dp"
android:progressDrawable="@drawable/xml_progress_bar_line"
style="@style/Widget.AppCompat.ProgressBar.Horizontal"/>
はxml_progress_bar_line.xmlファイルです。
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@android:id/background">
<shape>
<size
android:height="5dp"/>
<solid
android:color="@color/grey" />
</shape>
</item>
<item
android:id="@android:id/progress">
<clip>
<shape>
<size
android:height="10dp"/>
<solid
android:color="@color/green" />
<corners
android:radius="10dp"/>
</shape>
</clip>
</item>
</layer-list>
素早く詳細な回答Dayanに感謝します。しかし、私が必要とするものではありません。私は実際には進行状況バーを使用していませんでした。 – hakobyanheghine