在Android Wear上保持应用程序清醒

时间:2014-10-25 19:18:20

标签: android wear-os

嘿伙计们我有一个问题。我有一个轻量级应用程序(一个节拍器),它在Wear上运行得非常好,但该应用程序意味着连续运行几分钟而无需用户输入。但是,它会定期进入睡眠状态。应用程序的主要部分是使用振动,因此一旦应用程序振动就会停止。

我知道谷歌正试图强制执行这个唤醒锁,但有没有任何黑客可以用来让应用程序保持打开状态,并且只要我愿意,振动就会保持不变?

1 个答案:

答案 0 :(得分:1)

在Activity的布局XML中,在根节点添加keepScreenOn属性。例如:

<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:keepScreenOn="true">