Back to project page appboy-android-sdk.
The source code is released under:
Copyright (c) 2014 Appboy, Inc. All rights reserved. * Use of source code or binaries contained within Appboy's Android SDK is permitted only to enable use of the Appboy platform by customers of Appb...
If you think the Android project appboy-android-sdk 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.appboy.ui.activities; /*w ww .j a va 2 s . c o m*/ import android.os.Bundle; import com.appboy.ui.R; /** * The AppboyFeedActivity in an Activity class that displays the Appboy news feed fragment. This * class can be used to integrate the Appboy news feed as an Activity. * * Note: To integrate the Appboy news feed as a Fragment instead of an Activity, use the * {@link com.appboy.ui.AppboyFeedFragment} class. */ public class AppboyFeedActivity extends AppboyBaseFragmentActivity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.com_appboy_feed_activity); } }