我創建了一個包含水平進度的XML文件,但它顯示爲如下圖所示:水平進度條不顯示正確
這裏是我的XML:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello" />
<ProgressBar
android:id="@+id/progress"
style="@android:style/Widget.ProgressBar.Horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:max="100"
android:progress="50" />
</LinearLayout>
發生了什麼?我該如何解決它?
你得到你的進度現在的工作?看看我的回答 –
@K_Anas [這裏是你的修復結果](http://no6.upanh.com/b5.s28.d3/d92f828109ac5018216887c3680f635a_46596036.capture.png ) – user1465351
嘗試添加'android:maxHeight =「12dip」和android: minHeight =「12dip」'進度條。 – Chandra