gpt4 book ai didi

android - 无法在我的自定义 Android 应用程序中启动 DayDream 服务

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:02:39 29 4
gpt4 key购买 nike

我正在尝试开发一款内置白日梦功能的应用。我指的是以下教程:

http://www.technotalkative.com/how-to-create-daydream/

在设置>显示>DayDream 下,我可以在应用程序列表中看到我的应用程序,但是当我尝试启动它时,没有任何反应。我无法理解出了什么问题。

以下是我的代码, list 文件:

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<service
android:name=".MyDreamService"
android:exported="true"
android:label="Test - DayDream" >
<intent-filter>
<action android:name="android.service.dreams.DreamService" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</service>
</application>

类文件:

import android.graphics.Color;
import android.service.dreams.DreamService;
import android.widget.TextView;

public class MyDreamService extends DreamService {
@Override
public void onAttachedToWindow() {
super.onAttachedToWindow();

// Allow user touch
setInteractive(true);

// Hide system UI
setFullscreen(true);

// Set the dream layout
TextView txtView = new TextView(this);
setContentView(txtView);
txtView.setText("Hello DayDream world from TechnoTalkative.com !!");
txtView.setTextColor(Color.rgb(184, 245, 0));
txtView.setTextSize(30);

}
}

最佳答案

您的目标是 api 级别 21 或更高级别。您需要设置BIND_DREAM_SERVICE服务权限来实现您的白日梦:

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<service
android:name=".MyDreamService"
android:exported="true"
android:label="Test - DayDream"
android:permission="android.permission.BIND_DREAM_SERVICE"**>
<intent-filter>
<action android:name="android.service.dreams.DreamService" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</service>

关于android - 无法在我的自定义 Android 应用程序中启动 DayDream 服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36443752/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com