ImageView не соответствует изображению
У меня есть этот макет, когда я пытался поместить Image (src="Image") внутри любого ImageView, изображение расширяет границу ImageView и охватывает весь экран, это часть моего макета
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight=".5"
android:orientation="vertical"
>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight=".5"
android:id="@+id/firstFrame"
android:layout_margin="@dimen/LayoutMargin"
android:elevation="6dp"
android:background="@color/frame1"
android:orientation="horizontal"
>
<ImageView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:id="@+id/imageView"
android:layout_gravity="left|center_vertical"
android:layout_weight=".5"
/>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_weight=".5"
android:orientation="vertical"
>
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight=".5"
android:gravity="center"
android:scaleType="centerCrop"
/>
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight=".5"
android:gravity="center"
android:scaleType="centerCrop"
/>
</LinearLayout>
</LinearLayout>
Я хочу, чтобы изображение находилось внутри границы ImageView, какое-либо решение, пожалуйста?
2 ответа
Решение
Проблема была в весе, если вы используете Linear Layout как (горизонтальный), поэтому вы должны указать width = 0dp, а затем вес, который вам нужен, и наоборот, для вертикального.
Проблема в первом LinearLayout, это должен быть sumWeight, а не layout_weight, или, возможно, ваша структура неполна.