时间:2021-05-21
布局文件
activity_test.xml
<?xml version="1.0" encoding="utf-8"?><androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" xmlns:app="http://schemas.android.com/apk/res-auto"> <LinearLayout android:id="@+id/linearLayout" android:orientation="vertical" app:layout_constraintStart_toStartOf="parent" app:layout_constraintBottom_toBottomOf="parent" android:background="@color/colorAccent" android:layout_width="match_parent" android:layout_height="300dp"> </LinearLayout> <View android:layout_width="match_parent" android:layout_height="100dp" app:layout_constraintTop_toTopOf="@+id/linearLayout" app:layout_constraintBottom_toTopOf="@+id/linearLayout" app:layout_constraintStart_toStartOf="parent" app:layout_constraintEnd_toEndOf="parent" android:alpha="0" android:background="@android:color/white" /> <ImageView android:id="@+id/image" android:src="@mipmap/ic_launcher" app:layout_constraintTop_toTopOf="@+id/linearLayout" app:layout_constraintBottom_toTopOf="@+id/linearLayout" app:layout_constraintStart_toStartOf="parent" app:layout_constraintEnd_toEndOf="parent" android:layout_marginTop="100dp" android:layout_width="100dp" android:layout_height="100dp"/></androidx.constraintlayout.widget.ConstraintLayout>MainActivity.java
点击事件
View contentView = LayoutInflater.from(MainActivity.this).inflate(R.layout.activity_test, null); PopupWindow popWnd = new PopupWindow(MainActivity.this); popWnd.setContentView(contentView); popWnd.setWidth(ViewGroup.LayoutParams.MATCH_PARENT); popWnd.setHeight(ViewGroup.LayoutParams.WRAP_CONTENT); popWnd.setBackgroundDrawable(new ColorDrawable(0x00000000)); popWnd.setOutsideTouchable(false); popWnd.setFocusable(true); //相对于父控件的底部显示 无任何偏移 popWnd.showAtLocation(v, Gravity.BOTTOM, 0, 0);到此这篇关于Android 实现抖音头像底部弹框效果的文章就介绍到这了,更多相关android 抖音弹框内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例为大家分享了Android自定义View实现抖音飘动红心效果的具体代码,供大家参考,具体内容如下自定义View——抖音飘动红心效果展示动画效果使用自定义
微信小程序弹框和模态框实现代码实现效果图:实现代码:.wxapp-modal{width:100%;height:100%;position:fi
一.概述先给大家看一下效果图:点击中间的显示弹框按钮,从底部弹出来一个对话框,用户可以点击拍照或者从相册选择进行相应的操作,下面看看怎么实现。二.代码实现主页面
1.点击按钮(按钮的点击事件在此不在赘述,接下来直接写底部弹框的实现方式和样式的设计)2.弹框Dialogdialog=newDialog(context,R.
本文实例为大家分享了Android实现搜索框展示的具体代码,供大家参考,具体内容如下展示效果代码区SouActivitypublicclassSouActivi