Class: PMHomeActivity

Inherits:
PMSingleFragmentActivity show all
Defined in:
lib/project/pro_motion/pm_home_activity.rb

Overview

RM-733 module ProMotion

Constant Summary

Constants inherited from PMSingleFragmentActivity

PMSingleFragmentActivity::EXTRA_FRAGMENT_CLASS

Instance Attribute Summary

Attributes inherited from PMSingleFragmentActivity

#fragment, #fragment_container

Instance Method Summary collapse

Methods inherited from PMSingleFragmentActivity

#set_fragment

Methods inherited from PMActivity

#clear_references, #onCreate, #onDestroy, #onPause, #onResume

Instance Method Details

#on_create(saved_instance_state) ⇒ Object



4
5
6
7
8
9
10
11
# File 'lib/project/pro_motion/pm_home_activity.rb', line 4

def on_create(saved_instance_state)
  super

  mp "PMHomeActivity on_create", debugging_only: true

  home_screen_class = PMApplication.current_application.home_screen_class
  set_fragment home_screen_class.new if home_screen_class
end