0

我正在使用以下代码来绘制进度条。我的进度条底部需要一个小十字。我该怎么做?由于某种原因,使用 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>
4

1 回答 1

0

如果你的意思是一个随着进度移动的十字架我相信你需要设计你的进度条,看看这里

于 2013-09-30T20:24:34.650 回答