Back to project page ApplicationSessionActivity.
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.
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); } }