博文

Privacy Policy

Privacy Policy Guan Hua built the SlimPic app as an Ad Supported app. This SERVICE is provided by Guan Hua at no cost and is intended for use as is. This page is used to inform visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service. If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy. The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which are accessible at SlimPic unless otherwise defined in this Privacy Policy. Information Collection and Use For a better experience, while using our Service, I may require you to provide us with certain personally identifiable information. The information that I request will be retained on...

app-ads.txt

 google.com, pub-5450710557725766, DIRECT, f08c47fec0942fa0

Privacy Policy

                                                                                       Privacy Policy This application respects and protects the personal privacy of all users who use the service. In order to provide you with more accurate and personalized services, this application will use and disclose your personal information in accordance with the provisions of this Privacy Policy. However, this application will treat this information with a high degree of diligence and prudence. Except as otherwise provided in this Privacy Policy, this application will not disclose or provide this information to third parties without your prior permission. This application will update this privacy policy from time to time. When you agree to th...

隐私政策

                                                                                       隐私政策 本应用尊重并保护所有使用服务用户的个人隐私权。为了给您提供更准确、更有个性化的服务,本应用会按照本隐私权政策的规定使用和披露您的个人信息。但本应用将以高度的勤勉、审慎义务对待这些信息。除本隐私权政策另有规定外,在未征得您事先许可的情况下,本应用不会将这些信息对外披露或向第三方提供。本应用会不时更新本隐私权政策。 您在同意本应用服务使用协议之时,即视为您已经同意本隐私权政策全部内容。本隐私权政策属于本应用服务使用协议不可分割的一部分。 适用范围 (a) 在您注册本应用帐号时,您根据本应用要求提供的个人注册信息; (b) 在您使用本应用网络服务,或访问本应用平台网页时,本应用自动接收并记录的您的浏览器和计算机上的信息,包括但不限于您的IP地址、浏览器的类型、使用的语言、访问日期和时间、软硬件特征信息及您需求的网页记录等数据; (c) 本应用通过合法途径从商业伙伴处取得的用户个人数据。 您了解并同意,以下信息不适用本隐私权政策: (a) 您在使用本应用平台提供的搜索服务时输入的关键字信息; (b) 本应用收集到的您在本应用发布的有关信息数据,包括但不限于参与活动、成交信息及评价详情; (c) 违反法律规定或违反本应用规则行为及本应用已对您采取的措施。 信息使用 (a)本应用不会向任何无关第三方提供、出售、出租、分享或交易您的个人信息,除非事先得到您的许可,或该第三方和本应用(含本应用关联公司)单独或共同为您提供服务,且在该服务结束后,其将被禁止访问包括其...

安装好iRedMail后不能访问

如果你用的是国外的vps,可能是你的端口被墙了 国内端口检测 国外端口检测 如果一个端口国内不通,而国外通,说明这个端口被墙了

防止多次点击打开同一activity

 在Manifest文件的activity标签加入 android :launchMode ="singleTop"即可 <activity android :name =".view.home.MainActivity" android :exported ="true" android :launchMode ="singleTop" >

安卓slide_out_left过渡动画代码

  slide_out_left.xml <? xml version ="1.0" encoding ="utf-8" ?> <set xmlns: android ="http://schemas.android.com/apk/res/android" > <translate android :fromXDelta ="0" android :toXDelta ="-50%p" android :duration ="@android:integer/config_mediumAnimTime" /> <alpha android :fromAlpha ="1.0" android :toAlpha ="0.0" android :duration ="@android:integer/config_mediumAnimTime" /> </set>