我想在用户第一次打开应用时显示指令活动。我正在使用共享偏好。无论我到目前为止做什么都在努力。但我认为我实现这一目标的方式并不正确。 我在追随什么:
在具有半透明主题的活动中显示该特定图像
private void showFrontPageGuideIfFirstTime(){
if(!prefKeeper.getBoolean(PreferenceKey.FRONT_GUIDE)){
Intent intent = new Intent(this, ShowGuide.class);
intent.putExtra(BACKGROUND_KEY, R.drawable.front_page_png);
this.startActivity(intent);
prefKeeper.putBoolean(PreferenceKey.FRONT_GUIDE, true);
}
}
我的说明页面看起来像(在photoshop中制作): The Instruction Image
但我认为通过这种方式它不适用于所有智能手机屏幕。 我哪里错了,最好的办法是什么?