web-dev-qa-db-ja.com

Android:LockScreenにTextViewをオーバーレイする

Concept

LockScreenの上にTextViewをオーバーレイしようとしています(Android時間をオーバーレイする方法と同様)。

注:ロック画面をバイパスしたくはありませんが、その上に描画するだけです(タッチイベントのいずれにも干渉しません)。

(onCreateで)次のフラグを使用してみました:

getWindow().addFlags(WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE);
    getWindow().addFlags(WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE);
    getWindow().addFlags(WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED);
    getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
    getWindow().addFlags(WindowManager.LayoutParams.TYPE_SYSTEM_OVERLAY);
    getWindow().addFlags(WindowManager.LayoutParams.FLAG_WATCH_OUTSIDE_TOUCH);
    getWindow().addFlags(PixelFormat.TRANSLUCENT);

そして、次のテーマを(特定のアクティビティに)適用します。

   <style name="Transparent">
    <item name="Android:windowNoTitle">true</item>
    <item name="Android:windowContentOverlay">@null</item>
    <item name="Android:windowIsTranslucent">true</item>
    <item name="Android:windowBackground">@Android:color/transparent</item>
    <item name="Android:windowActionBar">false</item>
    <item name="Android:backgroundDimEnabled">false</item>
 <item name="Android:windowIsFloating">true</item>   
</style>

ただし、これはロック画面の上部に表示され、ロック画面を非表示にして、すべてのタッチイベントを無効にします。

編集:activity_overlay.xml

<RelativeLayout xmlns:Android="http://schemas.Android.com/apk/res/Android"
xmlns:tools="http://schemas.Android.com/tools"
Android:layout_width="match_parent"
Android:layout_height="match_parent"
Android:paddingBottom="@dimen/activity_vertical_margin"
Android:paddingLeft="@dimen/activity_horizontal_margin"
Android:paddingRight="@dimen/activity_horizontal_margin"
Android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.coco.MainActivity" >

<TextView
    Android:id="@+id/textView1"
    Android:layout_width="match_parent"
    Android:layout_height="wrap_content"
    Android:textColor="@Android:color/white"
    Android:layout_alignParentBottom="true"
    Android:text="TextView" />

</RelativeLayout>

アクティビティのマニフェスト宣言(overlay_activity.xmlを膨らませます)

      <activity
        Android:name=".DisplayActivity"
        Android:label="@string/app_name"
        Android:theme="@style/Transparent" />
12
Zen

アプリのアクティビティから物事を表示したいので、Facebook Messengerやその他のフローティングWindowsアプリと同じように、ServiceとWindowManagerを使用できます;)

LockScreenTextService.class

import Android.app.Service;
import Android.content.BroadcastReceiver;
import Android.content.Context;
import Android.content.Intent;
import Android.content.IntentFilter;
import Android.graphics.PixelFormat;
import Android.os.IBinder;
import Android.support.v4.content.ContextCompat;
import Android.view.Gravity;
import Android.view.WindowManager;
import Android.widget.TextView;

/**
 * Created on 2/20/2016.
 */
public class LockScreenTextService extends Service {

    private BroadcastReceiver mReceiver;
    private boolean isShowing = false;

    @Override
    public IBinder onBind(Intent intent) {
        // TODO Auto-generated method stub
        return null;
    }

    private WindowManager windowManager;
    private TextView textview;
    WindowManager.LayoutParams params;

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

        windowManager = (WindowManager)getSystemService(WINDOW_SERVICE);

        //add textview and its properties
        textview = new TextView(this);
        textview.setText("Hello There!");
        textview.setTextColor(ContextCompat.getColor(this, Android.R.color.white));
        textview.setTextSize(32f);

        //set parameters for the textview
        params = new WindowManager.LayoutParams(
                WindowManager.LayoutParams.WRAP_CONTENT,
                WindowManager.LayoutParams.WRAP_CONTENT,
                WindowManager.LayoutParams.TYPE_SYSTEM_OVERLAY,
                WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
                        | WindowManager.LayoutParams.FLAG_NOT_TOUCH_MODAL
                        | WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED
                        | WindowManager.LayoutParams.FLAG_WATCH_OUTSIDE_TOUCH,
                PixelFormat.TRANSLUCENT);
        params.gravity = Gravity.BOTTOM;

        //Register receiver for determining screen off and if user is present
        mReceiver = new LockScreenStateReceiver();
        IntentFilter filter = new IntentFilter(Intent.ACTION_SCREEN_OFF);
        filter.addAction(Intent.ACTION_USER_PRESENT);

        registerReceiver(mReceiver, filter);
    }

    @Override
    public int onStartCommand(Intent intent, int flags, int startId) {
        return START_STICKY;
    }

    public class LockScreenStateReceiver extends BroadcastReceiver {
        @Override
        public void onReceive(Context context, Intent intent) {
            if (intent.getAction().equals(Intent.ACTION_SCREEN_OFF)) {
                //if screen is turn off show the textview
                if (!isShowing) {
                    windowManager.addView(textview, params);
                    isShowing = true;
                }
            }

            else if(intent.getAction().equals(Intent.ACTION_USER_PRESENT)) {
                //Handle resuming events if user is present/screen is unlocked remove the textview immediately
                if (isShowing) {
                    windowManager.removeViewImmediate(textview);
                    isShowing = false;
                }
            }
        }
    }

    @Override
    public void onDestroy() {
        //unregister receiver when the service is destroy
        if (mReceiver != null) {
            unregisterReceiver(mReceiver);
        }

        //remove view if it is showing and the service is destroy
        if (isShowing) {
            windowManager.removeViewImmediate(textview);
            isShowing = false;
        }
        super.onDestroy();
    }

}

そしてAndroidManifest.xmlに必要な権限を追加し、サービスを追加します

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:Android="http://schemas.Android.com/apk/res/Android"
    package="com.example.textonlockscreenusingservice">

    <uses-permission Android:name="Android.permission.SYSTEM_ALERT_WINDOW"/> //this

    <application
        Android:allowBackup="true"
        Android:icon="@mipmap/ic_launcher"
        Android:label="@string/app_name"
        Android:supportsRtl="true"
        Android:theme="@style/AppTheme">
        <activity
            Android:name=".MainActivity"
            Android:label="@string/app_name"
            Android:theme="@style/AppTheme.NoActionBar">
            <intent-filter>
                <action Android:name="Android.intent.action.MAIN" />

                <category Android:name="Android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

        <service Android:name=".LockScreenTextService" /> //this

    </application>

</manifest>

アクティビティのonCreate()でサービスを開始することを忘れないでください

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    Intent intent = new Intent(this, LockScreenTextService.class);
    startService(intent);

}

ロック画面に表示されるTextViewTextView showing on lockscreen

ロック解除時にTextViewが削除されましたTextView removed when unlocked

Android Lollipop(5.0)から、 ロック画面ウィジェットのサポートが削除されました(一番下を参照) 。代わりに、 Notifications を使用する必要があります。これは、ロック画面に表示されるようになりました。

4
savanto