I'm trying to draw a horizontal progress bar, and according to everything i've done, it should be displaying correctly, but it's still the intermediary one that just goes around in circles. Here's the code from the xml file.
<ProgressBar
android:id="@+id/ProgressBar_Test"
android:background="@android:drawable/progress_horizontal"
android:layout_x="25px"
android:layout_y="275px"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:max="100"
android:progress="50"
android:orientation="horizontal"
/>
And still nothing. Any help?


