无法使我的活动窗口半透明

发布于 2024-11-26 09:24:57 字数 573 浏览 0 评论 0原文

我试图使我的 Activity 半透明,即透明,但它不起作用。它总是不透明的。到目前为止,这就是我的代码:

public class SvetlinTranslucentActivity extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        Window w = getWindow();
        w.setFormat(PixelFormat.RGBA_8888);
        w.addFlags(WindowManager.LayoutParams.FLAG_DIM_BEHIND);
        w.setBackgroundDrawable(new ColorDrawable(0x00FF0000));
    }
}

我一直在查看官方 API 演示中的代码,但仍然没有成功。

I'm trying to make my Activity translucent, i.e. see-through, but it's not working. It's always opaque. That's my code so far:

public class SvetlinTranslucentActivity extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        Window w = getWindow();
        w.setFormat(PixelFormat.RGBA_8888);
        w.addFlags(WindowManager.LayoutParams.FLAG_DIM_BEHIND);
        w.setBackgroundDrawable(new ColorDrawable(0x00FF0000));
    }
}

I've been looking at the code from the official API demos but still no success.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

往日情怀 2024-12-03 09:24:57

我在布局中使用 android:background

<RelativeLayout android:id="@+id/RelativeLayout01" 
android:layout_width="fill_parent" android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android" 
android:background="#D0000000">

,它肯定是透明的,我可以看到它下面的其他活动。

I use android:background in my layout

<RelativeLayout android:id="@+id/RelativeLayout01" 
android:layout_width="fill_parent" android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android" 
android:background="#D0000000">

and its certainly see through, I can see the other activity below it.

将军与妓 2024-12-03 09:24:57

我会寻找 AndroidManifest.xml,查找目标活动,然后设置:android:theme="@android:style/Theme.Translucent"

I would go for the AndroidManifest.xml, look for the target activity, and set: android:theme="@android:style/Theme.Translucent"

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文