Android Open Source - ApplicationSessionActivity Child Example Activity Application






From Project

Back to project page ApplicationSessionActivity.

License

The source code is released under:

Copyright (C) 2012 Apptentive Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the So...

If you think the Android project ApplicationSessionActivity listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.apptentive.android.example;
//from ww w . j a v a2s  . c  om
import android.os.Bundle;
import com.apptentive.android.application.ApplicationSessionActivity;

/**
 * @author Sky Kelsey
 */
public class ChildExampleActivityApplication extends ApplicationSessionActivity {

  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.child);
  }
}




Java Source Code List

com.apptentive.android.application.ApplicationSessionActivity.java
com.apptentive.android.example.ChildExampleActivityApplication.java
com.apptentive.android.example.MainExampleActivityApplication.java