解决方案,将imageView的下面属性设置为true即可
android:adjustViewBounds="true"
<ScrollView
android:layout_width="match_parent"
android:padding="0dp"
android:layout_margin="0dp"
android:layout_height="match_parent">
<LinearLayout
android:orientation="vertical"
android:background="@color/black"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:adjustViewBounds="true"
android:id="@+id/iv_help_1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
<ImageView
android:adjustViewBounds="true"
android:id="@+id/iv_help_2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
</LinearLayout>
</ScrollView>