我真的需要另一项<活动>吗?在 EULA 的清单文件中?

发布于 2024-11-06 23:18:40 字数 183 浏览 4 评论 0原文

我有一个简单的单活动应用程序。我现在想要添加 EULA 的另一个页面,当用户按下按钮时显示。

我需要为此定义另一个活动吗?

在现有的 中定义另一个 就足够了吗?

I have a simple single-activity app. I now want to add another page for the EULA, displayed when the user presses a button.

Do I need to define another activity for that?

Would defining another <intent-filter> within the existing <activity> suffice?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

谎言 2024-11-13 23:18:40

不,您不需要清单中的新活动。
我建议如下:
下载此类并将其添加到您的项目中:http://code.google.com/p/apps-for-android/source/browse/trunk/DivideAndConquer/src/com/google/android/divideandconquer/ Eula.java?r=93

之后,将包含 EULA 文本的文本文件放入“asset”应用程序文件夹中。
您可以在此处找到示例 Eula: http://www.developer-resource.com/sample -eula.htm

最后在主 Activity 的 Create 事件处理程序中或在按钮侦听器的示例中调用 Eula.show(this) 。

请记住,此类跟踪用户选择的内容(接受/拒绝)。
但您可以覆盖它:应在提供的 Eula 类中的 show() 方法的开头插入以下代码:
Preferences.edit().putBoolean(PREFERENCE_EULA_ACCEPTED, false).commit();
现在,每次单击按钮都会显示 Eula...

No you do not need a new activity in the manifest.
I suggest the following:
Download and add this class to your project: http://code.google.com/p/apps-for-android/source/browse/trunk/DivideAndConquer/src/com/google/android/divideandconquer/Eula.java?r=93

After that put a text file, containing the EULA text into the "asset" application folder.
A sample Eula you can find here: http://www.developer-resource.com/sample-eula.htm

Finally call Eula.show(this) in the Create event handler of your main Activity or in your example in the listener of the button.

Keep in mind, that this class tracks what the user has chosen (accept/decline).
But you can overwrite this: The following code should be inserted at the begining of show() method in the provided Eula class:
preferences.edit().putBoolean(PREFERENCE_EULA_ACCEPTED, false).commit();
Now the Eula will show up with every button click...

千柳 2024-11-13 23:18:40

如果您想要的话,您可以发布一个对话框,而无需创建另一个活动。因此使用构建器创建一个对话框并在getInstanceEula中返回它,如果希望它是阻塞的,则setCancelable(false),调用showDialog(DIALOG_EULA),并在onCreateDialog中调用getInstanceEula。它不会覆盖整个屏幕,但您可以使其可滚动。

You can post a Dialog if that is what you want without creating another activity. So create a dialog using a builder and return it in getInstanceEula, setCancelable(false) if you want it to be blocking, call showDialog(DIALOG_EULA), and call getInstanceEula in onCreateDialog. It would not cover the entire screen, but you can make it scrollable.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文