我新建的ProgressBar控件,ImageView控件,里面的图片都不能随着宽高的改变而改变
像这样
这是我的的xml代码 
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >
    <ProgressBar
        android:id="@+id/progressBar1"
        android:indeterminateDrawable="@drawable/blood_style"
        android:layout_width="200dp"
        android:layout_height="wrap_content"/>    <ProgressBar
        style="?android:attr/progressBarStyleHorizontal"
        android:layout_width="200dp"
        android:layout_height="40dp"
        android:layout_alignLeft="@+id/progressBar1"
        android:layout_below="@+id/progressBar1" ></ProgressBar>
    
</RelativeLayout>
我真不知道这是什么情况了????别人的就没事,都是新建的,我之前就有过一次上次我是在控件里加入了强制拉伸才管用的。我不想以后总是要强制拉伸呀???按理说应该不用什么处理都是默认的呀???
这是什么情况呀Android控件布局