我正在创建一个活动并动态添加视图。此活动包含图像视图和关闭按钮。我希望图像的背景实际上是相对布局背景是透明的,以便设备主屏幕上的图标可见。
我试过了
Window window = this.getWindow();
window.setBackgroundDrawable(newColorDrawable(android.graphics.Color.TRANSPARENT));
以及
relativeLayout.setBackgroundColor(Color.parseColor("#00000000"));
这也是
relativeLayout.setBackgroundColor(0x00000000);
似乎没什么用。任何指针将不胜感激。谢谢。
答案 0 :(得分:3)
您可以创建主题并将其用于活动
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Theme.Transparent" parent="android:Theme">
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowBackground">@android:color/transparent</item>
<item name="android:windowContentOverlay">@null</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowIsFloating">true</item>
<item name="android:backgroundDimEnabled">false</item>
</style>
</resources>
<activity android:name=".SampleActivity" android:theme="@style/Theme.Transparent"/>
答案 1 :(得分:1)
为特定活动定义样式主题。
在style.xml文件中
<style name="DialogTheme" parent="android:Theme.Holo.Light.Dialog">
<item name="android:windowBackground">@android:color/transparent</item>
<item name="android:colorBackgroundCacheHint">@null</item>
</style>
将Manifest中的这种风格与活动联系起来
<activity
android:name="com.pac.activity.YOURACTIVITY"
android:screenOrientation="portrait"
android:theme="@style/DialogTheme" >
</activity>
答案 2 :(得分:0)
您好使用此链接http://angrytools.com/android/button/。对你的帮助
答案 3 :(得分:0)
设置
android:background="@android:color/transparent"
您使用的颜色六角也是错误的......
00000000 is hexa for non transparent white
使用
Ff000000 instead
在您拥有的最顶级视图组中。这将基本上创建一个透明色的背景,其他视图将在其中。
您可以使用该位置的其他颜色调整透明度。