次のコードを使用して進行状況バーを描画しています。プログレスバーの下部に小さな十字が必要です。どうすればいいですか?何らかの理由で android:drawableBottom を使用してもうまくいきませんでした。ここに私のxmlコードがあります
<LinearLayout
android:id="@+id/choice_a"
android:layout_height="wrap_content"
android:layout_width="200dp"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:orientation="vertical"
>
<ProgressBar
android:id="@+id/progressid"
android:layout_width="match_parent"
android:layout_height="350dp"
android:progress="0"
style="@style/Widget.ProgressBar.Vertical.Yellow"/>
<com.stuff.MyTextView
android:id="@+id/graphid"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:textColor="@color/yellow"
android:gravity="center_horizontal"
style="@style/sub_header_text"/>
</LinearLayout>