2

我希望我的活动变暗,几乎透明。与 spotify 应用程序一样,下面的示例来自 iPhone 应用程序,但行为几乎相同

在此处输入图像描述

让我们假设这是一个android应用,前面的view是一个activity,后面的view也是一个activity。res/styles.xml为了获得这个设计,我需要设置哪个属性?我用谷歌搜索,但我只能找到像这样的 java 示例:

WindowManager.LayoutParams windowManager = getWindow().getAttributes();
    windowManager.dimAmount = 0.75f;
    getWindow().addFlags(WindowManager.LayoutParams.FLAG_DIM_BEHIND);

谢谢!

4

1 回答 1

5

找到了解决方案:

res/styles.xml

 <style name="Theme.Opacity" parent="Sherlock.__Theme.DarkActionBar">
     <item name="android:windowBackground">@android:color/transparent</item>
     <item name="android:windowIsTranslucent">true</item>
     <item name="android:background">#00000000</item>
 </style>
于 2013-01-28T10:57:48.027 回答