android中的半透明指令活动

时间:2015-12-20 15:31:57

标签: android android-activity

我想在用户第一次打开应用时显示指令活动。我正在使用共享偏好。无论我到目前为止做什么都在努力。但我认为我实现这一目标的方式并不正确。 我在追随什么:

  • 我在photoshop中绘制了一个透明的指令图像(带说明)。
  • 检查用户是否第一次打开该页面(使用共享首选项)。
  • 在具有半透明主题的活动中显示该特定图像

    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

但我认为通过这种方式它不适用于所有智能手机屏幕。 我哪里错了,最好的办法是什么?

0 个答案:

没有答案