android kotlin的widget.DrawerLayout取消点击消失掉试图的问题

在widget.DrawerLayout中 系统默认点击阴影部分DrawerLayout会消失,如果想不让消失,DrawerLayout的弹出视图外边包一层大小Layout 属性clickable 设置为true
如:
android:layout_width="1280dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:layout_gravity="start"
android:clickable="true">
android:id="@+id/frameLayout>
android:name="com.rtmart.rtinvoice.activity.RTInvoicePrintStateFragment"
android:layout_width="630dp"
android:layout_height="match_parent"
android:background="@color/WHITE"/>

还可以继承DrawerLayout 重写里边的方法

你可能感兴趣的:(android kotlin的widget.DrawerLayout取消点击消失掉试图的问题)