如何通过服务或应用程序实现Android屏幕保护程序



经过一番研究,我得出结论,在Androd中有n个像屏幕保护程序一样。但是有一些类似的,如启动器屏幕或锁定屏幕中的动态壁纸。

我尝试使用服务进行小出路。

在一段时间不活动后,在我的活动中,我启动了一项服务。

我的服务在处于非活动状态后启动了两次。

我希望该服务启动一次,并且在整个应用程序中启动。怎么做?

这是我使用的代码。

用户非活动:

serviceHandler = new Handler();
serviceRunnable = new Runnable() {
    @Override
    public void run() {
        Log.e("run times","Myservice");
        startService(new Intent(getBaseContext(), MyService.class));
        serviceHandler.removeCallbacks(serviceRunnable);
    }
};
@Override
public void onUserInteraction() {
    super.onUserInteraction();
    serviceHandler.removeCallbacks(serviceRunnable);
    stopService(new Intent(getBaseContext(), MyService.class));
    serviceHandler.postDelayed(serviceRunnable, 8000);
}

我的服务:

public class MyService extends Service {
    @Nullable
    @Override
    public IBinder onBind(Intent intent) {
        return null;
    }
    @Override
    public int onStartCommand(Intent intent, int flags, int startId) {
        Toast.makeText(MyService.this, "Service Started", Toast.LENGTH_SHORT).show();
        ArrayList<String> imagelist = new ArrayList<>();
        imagelist.add("");
        Intent i = new Intent(this, ScreenSaverActivity.class);
        i.putExtra("imageList", imagelist);
        i.putExtra("delay", 3000);
        i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        startActivity(i);

        return START_STICKY;
    }

    @Override
    public void onDestroy() {
        super.onDestroy();
        Toast.makeText(this, "Service Destroyed", Toast.LENGTH_SHORT).show();
    }

}

屏幕保护程序活动为:

public class ScreenSaverActivity extends Activity {
    ImageView imgScreenSaver;
    LinearLayout screenSaverLayout;
    Handler screenSaverHandler;
    Runnable screenSaverRunnable;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_screen_saver);
        screenSaverLayout = (LinearLayout) findViewById(R.id.layout_screen_saver);
        imgScreenSaver = (ImageView) findViewById(R.id.img_screenSaver);
        Bundle bundle = getIntent().getExtras();
        repeatScreenSaver(bundle.getStringArrayList("imageList"), bundle.getInt("delay"));
//        repeatScreenSaver("",bundle.getInt("delay"));
    }
    private void repeatScreenSaver(final ArrayList<String> imageList, final int milliseconds) {
        screenSaverHandler = new Handler();
        screenSaverRunnable = new Runnable() {
            @Override
            public void run() {
                LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(imgScreenSaver.getLayoutParams());
                Random random = new Random();
                params.setMargins(random.nextInt(500), random.nextInt(500),
                        random.nextInt(200), random.nextInt(200));
                imgScreenSaver.setLayoutParams(params);
                Ion.with(ScreenSaverActivity.this)
                        .load(imageList.get(
                                        new Random().nextInt(imageList.size()
                                        )
                                )
                        )
                        .withBitmap()
                        .error(R.mipmap.ic_launcher)
                        .intoImageView(imgScreenSaver);
                screenSaverHandler.postDelayed(this, milliseconds);
            }
        };
        screenSaverHandler.postDelayed(screenSaverRunnable, milliseconds);
    }

    @Override
    public boolean onKeyDown(int keyCode, KeyEvent event) {
        screenSaverHandler.removeCallbacks(screenSaverRunnable);
        finish();
        return super.onKeyDown(keyCode, event);
    }

屏幕保护程序布局为:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/layout_screen_saver"
    android:background="#a0000000">
    <ImageView
        android:id="@+id/img_screenSaver"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />
</LinearLayout>

我在清单中添加了以下代码:

<service android:name=".service.MyService" />

因为我的服务在包内.service

我找不到任何可靠的答案,但我在应用程序本身中使用了userInactivity,使用Application.class,currentAppInForeground()和许多其他答案的许多答案。我在这里包含了屏幕保护程序本身的整个项目。

我使用了应用程序.class。

在这里,我首先通过应用程序中运行的线程发现用户不活动.class然后我保留了一个显示屏幕保护程序的条件,即

if(applicationIsInForeGround() && !screenSaverActive && !videoPlaying){
    // start screen saver activity
}

这里的主要缺点是即使应用程序关闭,线程也会运行。当应用被强制停止、设备重新启动或应用被卸载时,它可能会停止。

相关内容

  • 没有找到相关文章

最新更新