Code Monkey home page Code Monkey logo

customtabshelper's Introduction

CustomTabsHelper

Custom tabs, made easy.

Why custom tabs?

Chrome Custom Tabs provides a way for an application to customize and interact with a Chrome Activity on Android. This makes the web content feel like being a part of the application, while retaining the full functionality and performance of a complete web browser.

โ€”โ€”GoogleChrome/custom-tabs-client

Chrome custom tabs with pre-loading vs. Chrome and WebView

Chrome custom tabs smooth the transition between apps and the web - Android Developers Blog

Google documentation on using custom tabs

Why this library?

Apart from the custom tabs support library, Google has also published a detailed sample (GoogleChrome/custom-tabs-client) for reference.

The Google sample included a CustomTabActivityHelper and some other utilities, which can be of great convenience for developers. However, manually integrating them is still tedious.

This library packaged those utility classes and service declaration for easy integration. Furthermore, a CustomTabsHelperFragment is added for managing the CustomTabActivityHelper with your activity life cycle automatically. Now you can enjoy the warm up boost within lines of code.

Sample APK

Integration

Gradle:

compile 'me.zhanghai.android.customtabshelper:library:1.0.4'

Usage

To attach a CustomTabsHelperFragment to an activity:

private CustomTabsHelperFragment mCustomTabsHelperFragment;
...
@Override
protected void onCreate(Bundle savedInstanceState) {
    ...
    mCustomTabsHelperFragment = CustomTabsHelperFragment.attachTo(this);
    ...
}

Calling attachTo() for a fragment also works fine because the CustomTabsHelperFragment is always attached to the host activity. So in this way, you can call attachTo() whenever your fragment or activity itself needs to use custom tabs, thus managing custom tabs usage independently.

To hint for a likely URL:

mCustomTabsHelperFragment.mayLaunchUrl(YOUR_URI, null, null);

But it is likely that you need to wrap this call in a CustomTabsActivityHelper.ConnectionCallback just as in the sample app.

To open a URL with custom tabs:

CustomTabsHelperFragment.open(this, mCustomTabsIntent, YOUR_URI, yourFallback);

A more detailed sample is available in the sample app's MainActivity.

License

Copyright 2015 Zhang Hai

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

customtabshelper's People

Contributors

noahandrews avatar zhanghai avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.