我开发了一个在Call上有一些功能的应用程序,所以我想为它制作通知屏幕并显示Contact Image,Number和Call duration,所以我希望实现像真正的来电屏幕(半活动)
所以我对如何为半活动开发代码感到困惑,所以建议我使用代码
喜欢这张图片
答案 0 :(得分:1)
试试这个..
将以下代码添加到styles.xml
内部值文件夹
<style name="Theme.D1NoTitleDim" parent="android:style/Theme.Translucent">
<item name="android:windowNoTitle">true</item>
<item name="android:windowContentOverlay">@null</item>
<item name="android:backgroundDimEnabled">true</item>
<item name="android:background">@android:color/transparent</item>
</style>
然后像AndroidManifest.xml
<activity
android:name=".YourNotificationActivity"
android:theme="@style/Theme.D1NoTitleDim" >