我有这个布局,当我试图将Image(src =“Image”)放在任何ImageView中时,Image展开了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>
我希望Image在ImageView边框内, 有解决方案吗?
答案 0 :(得分:0)
问题出在第一个LinearLayout上,它必须是sumWeight而不是layout_weight,或者你的结构可能不完整。
答案 1 :(得分:0)
问题在于重量 如果你使用线性布局作为(水平)所以你应该把width = 0dp然后你把你想要的重量, 对于垂直方式,反之亦然