图片选择器布局View大小问题

来源:4-12 图片选择器功能实现-1

大重九背后的故事

2020-04-17

章节4-12
因为解决不了问题,SquareLayout和cell_gallary的代码直接copy老师的了。图片描述

XML如下:

<com.example.common.widget.SquareLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_margin="1dp"
    android:background="@color/white">

    <ImageView
        android:id="@+id/im_image"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:contentDescription="@string/app_name">
    </ImageView>

    <View
        tools:visibility="visible"
        android:visibility="gone"
        android:id="@+id/view_shade"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@color/black_alpha_112">
    </View>
    
    <CheckBox
        tools:visibility="visible"
        android:visibility="gone"
        android:id="@+id/cb_select"
        android:layout_width="22dp"
        android:layout_height="22dp"
        android:button="@drawable/sel_cb_circle"
        android:clickable="false"
        android:drawablePadding="0dp"
        android:enabled="false"
        android:padding="0dp"
        android:layout_gravity="end"
        android:layout_margin="@dimen/len_2"
        >
    </CheckBox>

</com.example.common.widget.SquareLayout>

但是界面却是这样:
图片描述

写回答

1回答

Qiujuer

2020-04-23

看你的代码没有问题,尝试rebuild一下后看看呢?

另外运行起来也是这样么?

0
0

手把手开发完整的即时通讯App 客户端+服务端+MVP架构

客户端+服务端+MVP架构+封装思想+主流框架

1749 学习 · 872 问题

查看课程