web-dev-qa-db-ja.com

プログラムでアプリのロックまたはピンを設定する方法

現在、私はAndroid小さな子供向けのアプリを開発しています。選択したアプリに特定の時間ピンまたはパスワードを設定して、アプリを開かないようにしたいと考えています。たとえば、私の娘が仕事中に怒っている鳥をスマートフォンでしばらく再生したいとします。メッセージング、Gmailなどの重要なアプリを選択し、ピンまたはパスワードを30分間押します。は怒っている鳥を再生します。30分後、娘からスマートフォンを受け取り、制限時間が切れたため、ピンなしでアプリを開くことができます。

私はこれについて多くの調査を行いましたが、私の特定のケースの実装を見つけることができませんでした。

Android "app lock"アプリケーションはどのように機能しますか?

アプリロックは、私がやりたいことと似たような構造を持つことを知っています。私は錠前に時間制限を設けるだけです。

https://play.google.com/store/apps/details?id=com.domobile.applock&hl=en

ActivityManagerなどを使用してアクティビティ/アプリケーションを強制終了することは避けています。特定の時間だけ、選択したアプリの上にきれいなロック画面を表示したいだけです。

タイマーを設定した時間だけカウントダウンするCountdownTimerがあります。すべてのパッケージ名がある場合、このコードを変更して、特定のアプリケーションを選択した時間ブロックする方法を教えてください。

    start_timer.setOnClickListener(new View.OnClickListener() {


        @Override
        public void onClick(View view) {

            new AlertDialog.Builder( MainActivity.this )
                    .setMessage( "Are you sure you want to block the selected apps for the set amount of time?" )
                    .setPositiveButton( "Yeah man!", new DialogInterface.OnClickListener() {
                        public void onClick(DialogInterface dialog, int which) {
                            Log.d( "AlertDialog", "Positive" );

                            hourint = Integer.valueOf(number_text.getText().toString());

                            minuteint = Integer.valueOf(minute_text.getText().toString());

                            secondint = Integer.valueOf(second_text.getText().toString());

                            Log.i("YourActivity", "Hours: " + hourint);

                            Log.i("YourActivity", "Minutes: " + minuteint);

                            Log.i("YourActivity", "Seconds: " + secondint);

                            totalTimeCountInMilliseconds = ((hourint*60*60) +(minuteint*60) + (secondint)) * 1000;      // time count
                            timeBlinkInMilliseconds = 30*1000;

                            countDownTimer = new CountDownTimer(totalTimeCountInMilliseconds, 500) {
                                // 500 means, onTick function will be called at every 500 milliseconds

                                @Override
                                public void onTick(long leftTimeInMilliseconds) {
                                    Context context = MainActivity.this;





                                    long seconds = leftTimeInMilliseconds / 1000;
                                    mSeekArc.setVisibility(View.INVISIBLE);
                                    start_timer.setVisibility(View.INVISIBLE);
                                    block_button1.setVisibility(View.INVISIBLE);



                                    if ( leftTimeInMilliseconds < timeBlinkInMilliseconds ) {
                                        // textViewShowTime.setTextAppearance(getApplicationContext(), R.style.blinkText);
                                        // change the style of the textview .. giving a red alert style

                                        if ( blink ) {
                                            number_text.setVisibility(View.VISIBLE);
                                            minute_text.setVisibility(View.VISIBLE);
                                            second_text.setVisibility(View.VISIBLE);


                                            // if blink is true, textview will be visible
                                        } else {
                                            number_text.setVisibility(View.INVISIBLE);
                                            minute_text.setVisibility(View.INVISIBLE);
                                            second_text.setVisibility(View.INVISIBLE);


                                        }

                                        blink = !blink;         // toggle the value of blink
                                    }

                                    second_text.setText(String.format("%02d", seconds % 60));
                                    minute_text.setText(String.format("%02d", (seconds / 60) % 60));
                                    number_text.setText(String.format("%02d", seconds / 3600));                     // format the textview to show the easily readable format
                                }


                                @Override
                                public void onFinish() {
                                    // this function will be called when the timecount is finished
                                    //textViewShowTime.setText("Time up!");
                                    number_text.setVisibility(View.VISIBLE);
                                    minute_text.setVisibility(View.VISIBLE);
                                    second_text.setVisibility(View.VISIBLE);
                                    mSeekArc.setVisibility(View.VISIBLE);
                                    start_timer.setVisibility(View.VISIBLE);
                                    block_button1.setVisibility(View.VISIBLE);


                                }

                            }.start();
                        }
                    })
                    .setNegativeButton("Nope!", new DialogInterface.OnClickListener() {
                        public void onClick(DialogInterface dialog, int which) {
                            Log.d("AlertDialog", "Negative");
                            dialog.cancel();
                        }
                    })
                    .show();

編集: http://Pastebin.com/MHGFw7PK

13
Rohit Tigga

ロジック

  • アプリをブロックしたい場合は、サービスを作成して開始する必要があります。
  • そしてインサービスでは、アプリのパッケージ名を確認する必要があります。これにより、実行するアプリとピン/パスワードアクティビティを表示するアプリを決定できます。

今のコード例

  • サービスを開始するには、次のようなコードで、

    startService(new Intent(this, SaveMyAppsService.class));
    
  • 今、あなたのサービスの中で、このようなパッケージをチェックしてください、

    public class SaveMyAppsService extends Android.app.Service 
    {
    
        String CURRENT_PACKAGE_NAME = {your this app packagename};
        String lastAppPN = "";
        boolean noDelay = false;
        public static SaveMyAppsService instance;
    
        @Override
        public IBinder onBind(Intent intent) {
            // TODO Auto-generated method stub
            return null;
        }
    
        @Override
        public int onStartCommand(Intent intent, int flags, int startId) {
            // TODO Auto-generated method stub
    
            scheduleMethod();
            CURRENT_PACKAGE_NAME = getApplicationContext().getPackageName();
            Log.e("Current PN", "" + CURRENT_PACKAGE_NAME);
    
            instance = this;
    
            return START_STICKY;
        }
    
        private void scheduleMethod() {
            // TODO Auto-generated method stub
    
            ScheduledExecutorService scheduler = Executors
                    .newSingleThreadScheduledExecutor();
            scheduler.scheduleAtFixedRate(new Runnable() {
    
                @Override
                public void run() {
                    // TODO Auto-generated method stub
    
                    // This method will check for the Running apps after every 100ms
                    if(30 minutes spent){
                         stop();
                    }else{
                       checkRunningApps();
                   }
                }
            }, 0, 100, TimeUnit.MILLISECONDS);
        }
    
        public void checkRunningApps() {
            ActivityManager mActivityManager = (ActivityManager) getSystemService(Context.ACTIVITY_SERVICE);
            List<ActivityManager.RunningTaskInfo> RunningTask = mActivityManager.getRunningTasks(1);
            ActivityManager.RunningTaskInfo ar = RunningTask.get(0);
            String activityOnTop = ar.topActivity.getPackageName();
            Log.e("activity on TOp", "" + activityOnTop);
    
            // Provide the packagename(s) of apps here, you want to show password activity
        if (activityOnTop.contains("whatsapp")  // you can make this check even better
                || activityOnTop.contains(CURRENT_PACKAGE_NAME)) {
                // Show Password Activity                
            } else {
                // DO nothing
            }
         }
    
        public static void stop() {
            if (instance != null) {
            instance.stopSelf();
            }
        }
    }   
    

編集:(Lollipopのトップパッケージ名を取得)

非常に良い答えがここにあります。

15
Nadeem Iqbal
String lastAppPN = "";
public void checkRunningApps() {
    ActivityManager mActivityManager = (ActivityManager) getSystemService(Context.ACTIVITY_SERVICE);
    String activityOnTop;
    if (Build.VERSION.SDK_INT > 20) {
        activityOnTop = mActivityManager.getRunningAppProcesses().get(0).processName;
    } else {
        List<ActivityManager.RunningTaskInfo> RunningTask = mActivityManager.getRunningTasks(1);
        ActivityManager.RunningTaskInfo ar = RunningTask.get(0);
        activityOnTop = ar.topActivity.getPackageName();
    }
    //Log.e("activity on TOp", "" + activityOnTop);

    // Provide the packagename(s) of apps here, you want to show password activity
    if (activityOnTop.contains("whatsapp")  // you can make this check even better
            || activityOnTop.contains(CURRENT_PACKAGE_NAME)) {
        if (!(lastAppPN.equals(activityOnTop))) {
            lastAppPN = activityOnTop;
            Log.e("Whatsapp", "started");
        }
    } else {
        if (lastAppPN.contains("whatsapp")) {
            if (!(activityOnTop.equals(lastAppPN))) {
                Log.e("Whatsapp", "stoped");
                lastAppPN = "";
            }
        }
        // DO nothing
    }
}
2
Milind Soni

小さなデモプロジェクトを作成しました。これが誰かに役立つことを願って プロジェクトへのリンク

0
Vivek Barai