Privacy policy 隐私政策

隐私政策


我們不會收集及以任何形式儲存來自你社交網路的任何資訊或銷售給廣告或其它營運機構。

 

个人信息 


當你透過社交網路進行分享時,可能會要求輸入帳號密碼,但該資訊由iOS系統管理,App不會以任何形式儲存帳號密碼,也不會收集及以任何形式儲存您在社交網路上的任何個人資訊。

 

隐私政策条款 

使用本App即表示您同意此隱私政策的條款和條件。如果您不同意本政策,請不要使用該App。我們保留權利,在我們決定更改,修改,增加或刪除本政策的部分,在任何時候。請定期瀏覽此網頁查閱任何修改。如果您繼續使用我們的App以後的任何更改這些條款的發布將意味著你已經接受了這些調整。

联络信箱: activet@163.com

 

 

PRIVACY POLICY


We do not collect and save from your social account  in any form or sell any information to advertisers or other operators.

 

Personal information 


When you share information through social accounts may be asked to enter the account and password, but that information is management by iOS system. App does not save account and password in any form or collect and save any personal information in any form on your social account.

 

Privacy Policy Terms 


Use this App mean you agree to the terms and conditions of this Privacy Policy. If you do not agree to this policy, please do not use this App. We reserve the right, in our decision to change, modify, add or remove portions of this policy at any time. Please check this page periodically for any changes. Publish any changes to these terms if you continue to use our App future will mean that you have accepted these adjustments.

E-Mail : activet1986@gmail.com

  • 2
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
在 Android 应用中添加隐私政策弹窗布局是一种常见的做法,以确保用户知情并同意您应用的数据收集和隐私政策。 以下是一个简单的示例,说明如何创建一个隐私政策弹窗布局: 1. 首先,在您的应用项目的 res/layout 目录下创建一个名为 "dialog_privacy_policy.xml" 的 XML 布局文件。 2. 打开 "dialog_privacy_policy.xml" 文件,并添加以下代码: ```xml <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical" android:padding="16dp"> <!-- 添加标题 --> <TextView android:id="@+id/title" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="隐私政策" android:textStyle="bold" android:textSize="20sp" android:gravity="center" /> <!-- 添加隐私政策内容 --> <TextView android:id="@+id/content" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="您的隐私对我们非常重要,我们承诺保护您的个人信息。请仔细阅读我们的隐私政策以了解更多详情。" android:textSize="16sp" /> <!-- 添加同意按钮 --> <Button android:id="@+id/agreeButton" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="同意" /> </LinearLayout> ``` 3. 使用此布局的代码示例: ```java // 在需要显示隐私政策弹窗的地方,如启动时或设置页面 AlertDialog.Builder builder = new AlertDialog.Builder(this); LayoutInflater inflater = getLayoutInflater(); View dialogView = inflater.inflate(R.layout.dialog_privacy_policy, null); builder.setView(dialogView); AlertDialog dialog = builder.create(); // 获取对应的 View 对象 TextView titleTextView = dialogView.findViewById(R.id.title); TextView contentTextView = dialogView.findViewById(R.id.content); Button agreeButton = dialogView.findViewById(R.id.agreeButton); // 设置弹窗的标题和内容 titleTextView.setText("隐私政策"); contentTextView.setText("您的隐私对我们非常重要,我们承诺保护您的个人信息。请仔细阅读我们的隐私政策以了解更多详情。"); // 设置同意按钮的点击事件 agreeButton.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { // 用户点击同意按钮后的逻辑处理 dialog.dismiss(); // 关闭弹窗 // 继续应用的逻辑 } }); // 显示弹窗 dialog.show(); ``` 请注意,这只是一个简单的示例,您可能需要根据您应用的具体需求进行修改和定制化。同时,确保在弹窗中提供清晰明确的隐私政策内容,并遵守相关法规和规定。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值