0

我正在为 api 15 开发。我有一个带有背景图像和按钮的布局。按下按钮时,背景图像应将 alpha 更改为 150。但它没有生效。我是否必须以某种方式强制更新布局以使其生效?这是我的xml:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/wall1Layout"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@drawable/wall1withkey"
    tools:context=".FireRoomActivity" >
<Button ...
/>
</RelativeLayout>

在主要活动中,有一个方法应该从按钮响应 onClick :

public void buttonClicked(View v)
{
findViewById(R.id.wall1Layout).getBackground().setAlpha(180);;
}

所以图像 wall1withkey 应该将 alpha 更改为 180

4

1 回答 1

0

当我尝试创建半透明背景时,我使用了自己的自定义主题。

styles.xml

<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:windowFullscreen">true</item>
    <item name="android:backgroundDimEnabled">false</item>
</style>

然后你必须将它设置Theme.Transparent为你的活动AndroidManifest.xml

<activity
        android:name="com.example.TransparentActivity"
        android:theme="@style/Theme.Transparent" >
    </activity>
于 2013-10-23T23:10:12.017 回答