仿抖音短视频APP源码,底部弹窗对话框的相关代码 核心代码
final Dialog dialog = new Dialog(this, R.style.BottomDialogStyle); View view = View.inflate(this, R.layout.view_bottomdialog, null); Button mCancel = (Button) view.findViewById(R.id.cancel_bt); dialog.setContentView(view); dialog.setCanceledOnTouchOutside(true); view.setMinimumHeight((int) (ScreenSizeUtils.getInstance(this).getScreenHeight() * 0.23f)); Window dialogWindow = dialog.getWindow(); WindowManager.LayoutParams lp = dialogWindow.getAttributes(); lp.width = (int) (ScreenSizeUtils.getInstance(this).getScreenWidth()); lp.height = WindowManager.LayoutParams.WRAP_CONTENT; lp.gravity = Gravity.BOTTOM; dialogWindow.setAttributes(lp); mCancel.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { dialog.dismiss(); } }); dialog.show();Style
布局文件
view_bottomdialog.xml <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:background="@android:color/transparent" android:orientation="vertical" > <Button android:layout_width="match_parent" android:layout_height="wrap_content" android:background="@android:color/white" android:text="拍照" /> <View android:layout_width="match_parent" android:layout_height="0.5dp" android:layout_marginLeft="5dp" android:layout_marginRight="5dp" android:background="#FFD700" /> <Button android:layout_width="match_parent" android:layout_height="wrap_content" android:background="@android:color/white" android:text="相册" /> <View android:layout_width="match_parent" android:layout_height="0.5dp" android:layout_marginLeft="5dp" android:layout_marginRight="5dp" android:background="#FFD700" /> <Button android:id="@+id/cancel_bt" android:layout_width="match_parent" android:layout_height="wrap_content" android:background="@android:color/white" android:text="取消" /> <View android:layout_width="match_parent" android:layout_height="0.5dp" android:layout_marginLeft="5dp" android:layout_marginRight="5dp" android:background="#FFD700" /> </LinearLayout>以上就是仿抖音短视频APP源码,底部弹窗对话框的相关代码, 更多内容欢迎关注之后的文章
