BottomSheetDialog 控制初始高度是跟 behavior_peekHeight 属性有关 样式主题设置 <style name="BottomSheetDialog" parent="Theme.Design.Light.BottomSheetDialog"> <item name="bottomSheetStyle">@style/bottomSheetStyleWrapper</item> </style> <style name="bottomSheetStyleWrapper" parent="Widget.Design.BottomSheet.Modal"> <item name="behavior_peekHeight">500dp</item> </style> <!--代码中应用--> BottomSheetDialog dialog = new BottomSheetDialog(this, R.style.BottomSheetDialog); dialog.setContentView(R.layout.layout_bottom_sheet); dialog.show(); 动态代码设置 Dialog 的布局最外层使用 RelativeLayout 或者 ConstraintLayout, 其他控件设置高度无法生效 需要在子内容布局设置高......
Git git config --global user.name "Your Name" (安装完 git 后,设置用户名与邮箱) git config --global user.email "Your email" (设置邮箱) ssh-keygen -t rsa -C "[email protected]" (创建 SSH key) ssh-agent -s (查看 ssh 是否启用) ssh -T [email protected] (验证) git init (初始化一个本地仓库) git add . (将所有文件加入到跟踪列表) git commit -m "write something title" (......
最近看到很多人都在找工作, 而且很多人都感觉今年找工作比去年难很多, 竞争力也增加不少, 因此激发我整理这份资料, 希望能帮到正在找或者准备找工作的童鞋们. 本文已授权微信公众号 AndroidDeveloper (id: googdev) 独家发......