在android开发中,imageView内的图片太大挡住了另外一个请问怎么解决

请看图。
我是想做成第一张图的效果

出来却是

这样的效果

两个图片是平分屏幕宽的可以这样布局:使用权重

 <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal" >
        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:src="@drawable/fatierenxingming" />
        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:src="@drawable/fatierenxingming" />
    </LinearLayout>

温馨提示:答案为网友推荐,仅供参考