1. ホーム
  2. android

[解決済み] Appで画面を表示し続けるにはどうしたらいいですか?重複

2022-06-27 18:11:34

質問

私のAndroidアプリでは、電話をロックしたりバックライトを消したりすることはありません。

どのように解決するのですか?

使用方法 PowerManager.WakeLock クラスを使用してください。 以下のコードを参照してください。

import android.os.PowerManager;

public class MyActivity extends Activity {

    protected PowerManager.WakeLock mWakeLock;

    /** Called when the activity is first created. */
    @Override
    public void onCreate(final Bundle icicle) {
        setContentView(R.layout.main);

        /* This code together with the one in onDestroy() 
         * will make the screen be always on until this Activity gets destroyed. */
        final PowerManager pm = (PowerManager) getSystemService(Context.POWER_SERVICE);
        this.mWakeLock = pm.newWakeLock(PowerManager.SCREEN_DIM_WAKE_LOCK, "My Tag");
        this.mWakeLock.acquire();
    }

    @Override
    public void onDestroy() {
        this.mWakeLock.release();
        super.onDestroy();
    }
}

マニフェストファイルで以下のパーミッションを使用します。

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

これで問題が解決するといいのですが...:)