Android 实现抖音头像底部弹框效果的实例代码
更新时间:2020年04月21日 15:51:51 作者:迷路国王
这篇文章主要介绍了Android 实现抖音头像底部弹框效果,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
布局文件
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 抖音弹框内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
相关文章
AndroidStudio中重载方法@Override的使用详解
这篇文章主要介绍了AndroidStudio中重载方法@Override的使用详解,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧2020-04-04
Android使用百度地图出现闪退及定位时显示蓝屏问题的解决方法
这篇文章主要介绍了Android使用百度地图出现闪退及定位时显示蓝屏问题的解决方法,需要的朋友可以参考下2018-01-01
okhttp3.4.1+retrofit2.1.0实现离线缓存的示例
本篇文章主要介绍了okhttp3.4.1+retrofit2.1.0实现离线缓存的示例,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧2017-12-12
Android组件TabHost实现页面中多个选项卡切换效果
这篇文章主要为大家详细介绍了Android组件TabHost实现页面中多个选项卡切换效果的相关资料,感兴趣的小伙伴们可以参考一下2016-05-05
Android 使用CoordinatorLayout实现滚动标题栏效果的实例
下面小编就为大家带来一篇Android 使用CoordinatorLayout实现滚动标题栏效果的实例。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧2017-03-03


最新评论