gpt4 book ai didi

没有 UI 的 Android 设置应用程序

转载 作者:行者123 更新时间:2023-11-29 17:45:59 25 4
gpt4 key购买 nike

我想制作一个应用程序,当您安装它时,它不会显示任何屏幕/用户界面,而只会更改您的铃声和手机上的其他一些设置。我不介意应用程序图标显示在应用程序列表中。这是我尝试过的:

-- 由于 setContentView 设置了 UI 的内容,我将其从 MainActivity.onCreate() 中删除,但在应用程序启动时仍然出现白屏。我在代码的其他任何地方都看不到对我的 activity_main.xml 的引用。

-- 我似乎找不到其他人有同样的问题。谷歌和论坛搜索不会产生任何与我的情况相似的东西。

-- 偏好 fragment 非常匹配,但它们确实需要再次使用 UI。

有人可以建议我可以采用的方法来完成此任务吗?我知道这听起来像病毒,但它更像是我开发的一个有趣的恶作剧应用程序,目的是恶作剧我的 friend 。提前致谢

最佳答案

since setContentView sets the content for the UI, I removed it from the MainActivity.onCreate() but I still get a white screen on app launch

在 list 中使用 Theme.NoDisplay:

    <activity
android:name="BootstrapActivity"
android:theme="@android:style/Theme.NoDisplay">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>

<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>

并确保在 onCreate() 结束时调用 finish()

关于没有 UI 的 Android 设置应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26704209/

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