Android Facebook锁屏通知

时间:2014-07-23 21:21:35

标签: android facebook notifications lockscreen

在Android应用程序的最新版本上,Facebook显示了锁定屏幕通知功能,如此屏幕截图所示:

screenshot

有没有人试图实现这个?

我知道在锁定屏幕上显示Activity非常简单,但不幸的是它不适用于半透明背景。基本上它工作,但在我们的活动下面,我们看到启动器屏幕,而不是锁定屏幕(在这种情况下像锁屏也将是透明的)。

我现在尝试的是:

getWindow().addFlags(WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED);
getWindow().addFlags(WindowManager.LayoutParams.FLAG_DISMISS_KEYGUARD);
getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
getWindow().addFlags(WindowManager.LayoutParams.FLAG_TURN_SCREEN_ON);

在我的活动中。

我也试过这个例子:https://gist.github.com/daichan4649/5352944

正如我所描述的那样 - 一切正常但没有透明度。

根据我的观察,Facebook使用主题:

@android:style/Theme.Translucent.NoTitleBar

并且没有权限:

<uses-permission android:name="android.permission.DISABLE_KEYGUARD" />

此外,我注意到锁定屏幕通知会获取触摸功能,因此我们无法通过手势显示状态栏中的通知。

有关如何在Android L发布之前创建此类通知的任何想法。

2 个答案:

答案 0 :(得分:18)

实际上,ferdy182已经存在。

这是我使用android.permission.SYSTEM_ALERT_WINDOW获得的内容:

enter image description here

所以,我不能用Activity做到这一点。它不会起作用。我必须实施使用Service添加View的{​​{1}}。

一种可能的工作流程是:您的WindowManager =&gt;收到广播。它开始一个服务=&gt;服务添加了所需的视图。

现在,代码(评论解释了几件事):

BroadcastReceiver

最后,将权限添加到您应用的清单中:

public class MyService extends Service {

    View mView;

    @Override
    public IBinder onBind(Intent intent) {
        return null;
    }

    @Override
    public void onCreate() {
        super.onCreate();

        // instance of WindowManager
        WindowManager mWindowManager = (WindowManager) getSystemService(WINDOW_SERVICE);

        LayoutInflater mInflater = (LayoutInflater) 
                                      getSystemService(Context.LAYOUT_INFLATER_SERVICE);

        // inflate required layout file
        mView = mInflater.inflate(R.layout.abc, null);

        // attach OnClickListener
        mView.findViewById(R.id.some_id).setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {
                // you can fire an Intent accordingly - to deal with the click event
                // stop the service - this also removes `mView` from the window
                // because onDestroy() is called - that's where we remove `mView`
                stopSelf();
            }
        });

        // the LayoutParams for `mView`
        // main attraction here is `TYPE_SYSTEM_ERROR`
        // as you noted above, `TYPE_SYSTEM_ALERT` does not work on the lockscreen
        // `TYPE_SYSTEM_OVERLAY` works very well but is focusable - no click events
        // `TYPE_SYSTEM_ERROR` supports all these requirements
        WindowManager.LayoutParams mLayoutParams = new WindowManager.LayoutParams(
            ViewGroup.LayoutParams.WRAP_CONTENT, 
            ViewGroup.LayoutParams.WRAP_CONTENT, 0, 0,
            WindowManager.LayoutParams.TYPE_SYSTEM_ERROR,
            WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED
                    | WindowManager.LayoutParams.FLAG_DISMISS_KEYGUARD
                    | WindowManager.LayoutParams.FLAG_TURN_SCREEN_ON
                    | WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON, 
                      PixelFormat.RGBA_8888);

        // finally, add the view to window
        mWindowManager.addView(mView, mLayoutParams);
    }

    @Override
    public void onDestroy() {
        super.onDestroy();

        // remove `mView` from the window
        removeViewFromWindow();
    }

    // Removes `mView` from the window
    public void removeNow() {
        if (mView != null) {
            WindowManager wm = (WindowManager) getSystemService(WINDOW_SERVICE);
            wm.removeView(mView);
        }
    }
}

答案 1 :(得分:0)

我认为它可能与Messenger的聊天头泡沫使用相同的技巧。

基本上你使用这个权限 &#34; android.permission.SYSTEM_ALERT_WINDOW&#34; 在其他应用上方显示您的观看次数

我没有尝试过自己,但我很确定他们使用过这个。

来自文档 &#34;允许应用程序使用TYPE_SYSTEM_ALERT类型打开窗口,显示在所有其他应用程序之上。 &#34; http://developer.android.com/reference/android/Manifest.permission.html#SYSTEM_ALERT_WINDOW