我想在我的应用程序启动后有一个简单的弹出窗口,用户可以从应用程序的语言中选择(应该使用不同的 xml)
在第一次选择后,它不应该出现在下一次运行应用程序中,并且应该可以从设置按钮中更改。
我是一个 Android dummy 并且真的需要它,非常感谢
为此使用共享偏好,例如:-
private SharedPreferences mPreferences;
boolean firstTime = mPreferences.getBoolean("firstTime", true);
if (firstTime) {
SharedPreferences.Editor editor = mPreferences.edit();
editor.putBoolean("firstTime", false);
editor.commit();
SelectLanguge();
}