如何在Android中实现悬浮Activity

2025-03-20 12:18:13
推荐回答(1个)
回答1:

让Activity使用以下两个theme中的一个就可以做到。
1)android:theme="@android:style/Theme.Dialog"

2)android:theme="@android:style/Theme.Translucent"

咱们还可以使用自定义style实现得更彻底一点


然后在Manifest文件中这样注册Activity
android:theme="@style/Translucent"
android:label="@string/app_name">