我准备推销我的第一个Android应用程序(来自美国Google Checkout / Merchant帐户和美国银行帐户等),我希望用户至少同意某种简单的责任免责声明之前他/她可以安装该应用程序。
据您所知,是否可能,如果可行,最好的方法是什么?
非常感谢您的帮助和提示。
答案 0 :(得分:10)
当你说“之前他/她可以安装应用程序”时,我猜你的意思是在允许用户安装应用程序的同一屏幕中你想要放置免责声明。好吧,我认为这是不可能的。实际上,应用程序可以以不同的方式安装(来自第三方应用程序,或者在有根的手机上使用abd install
)。
所以,我的建议是将该免责声明放在主要活动中。您可以在某处保存用户决策(最简单的方法是首选)。这样,您可以检查用户是否已接受免责声明。当然,如果用户不接受,您就不要让他/她使用您的应用程序。
public class MainActivity extends Activity {
public static final String PREFS_NAME = "user_conditions";
@Override
protected void onCreate(Bundle state){
super.onCreate(state);
// bla bla bla
// Check whether the user has already accepted
SharedPreferences settings = getSharedPreferences(PREFS_NAME, 0);
boolean accepted = settings.getBoolean("accepted", false);
if( accepted ){
// do what ever you want... for instance:
startActivity(new Intent(this, RealApp.class));
}else{
// show disclaimer....
// for example, you can show a dialog box... and,
// if the user accept, you can execute something like this:
// We need an Editor object to make preference changes.
// All objects are from android.context.Context
SharedPreferences settings = getSharedPreferences(PREFS_NAME, 0);
SharedPreferences.Editor editor = settings.edit();
editor.putBoolean("accepted", true);
// Commit the edits!
editor.commit();
}
}
}
答案 1 :(得分:5)