1

我想创建一个弹出窗口,例如在 Go SMS Pro 中收到的 SMS 通知(在所有活动之上,也可点击)。我一直在尝试使用 Popup Windows,但似乎没有任何效果。不知何故,我无法控制单击该“弹出窗口”的时间。

先感谢您。

WindowManager.LayoutParams params = new WindowManager.LayoutParams(
                800, 800,
                WindowManager.LayoutParams.TYPE_SYSTEM_ALERT,
                WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM,
                PixelFormat.TRANSLUCENT);
WindowManager wm = (WindowManager) getSystemService(WINDOW_SERVICE);

LayoutInflater inflater = (LayoutInflater) getSystemService(LAYOUT_INFLATER_SERVICE);
View myView = inflater.inflate(R.layout.custom_toast, null);
myView.setOnTouchListener(new OnTouchListener() {
    @Override
    public boolean onTouch(View my, MotionEvent event) {
        testeDisplay();
        return false;
    }
});
wm.addView(myView, params);
4

1 回答 1

0

为什么不将活动用作对话框...将对话框主题应用于您的活动。

<style name="Theme.CustomDialog" parent="android:style/Theme.Dialog">
    <item name="android:windowBackground">@drawable/filled_box</item>
</style>

 <activity android:name=".app.CustomDialogActivity"
            android:label="@string/activity_custom_dialog"
            android:theme="@style/Theme.CustomDialog">
    </activity>
于 2012-12-20T19:04:51.613 回答