Last active
September 9, 2015 19:42
-
-
Save tomredman/e239e3cb26bc8a45e26d to your computer and use it in GitHub Desktop.
Example usage of the ChromeCustomTab class
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.buffer.android.helpers.customtabs; | |
import android.app.Activity; | |
/** | |
* ----------------------- | |
* FAQCustomTab | |
* ----------------------- | |
* | |
* @author Tom Redman | |
* 15-09-04 | |
*/ | |
public class FAQCustomTab extends ChromeCustomTab { | |
private final static String FAQ_URL = "https://buffer.com/faq/mobile-v/android-app"; | |
public FAQCustomTab(Activity activity) { | |
super(activity, FAQ_URL); | |
warmup(); | |
mayLaunch(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment