0

基本上我想要一个具有半透明/黑色背景的活动。即当新活动启动时,父活动会变暗。

我能够获得完全透明的背景,但在 manifest.xml 中使用以下内容

<activity android:name="com.xxx.FullPhotoActivity" android:theme="@android:style/Theme.Translucent.NoTitleBar" ></activity>

但我需要背景有点暗但又透明。

我也尝试将 alpha 添加到我的 linearlauout 中,但这也适用于子元素。

4

1 回答 1

0

感谢黑带的评论,我设法让它与以下组合一起工作

线性布局背景颜色#EA000000

活动申报<activity android:name="com.xxx.FullPhotoActivity" android:theme="@android:style/Theme.Translucent.NoTitleBar" ></activity>

于 2013-07-24T14:53:26.737 回答