Code Monkey home page Code Monkey logo

customchrometabs's Introduction

Custom Chrome Tabs

Introduction

An Android Application to browse links in Chrome tabs in the app.

To do so we use the Custom Tabs package provides APIs to support adding and managing custom tabs in your apps.

The Custom Tabs Support library adds support for various classes, such as Custom Tabs Service and Custom Tabs Callback.

Chrome Custom Tabs allow an app to customize how Chrome looks and feels. An app can change things like:

  • Toolbar color
  • Enter and exit animations
  • Add custom actions to the Chrome toolbar, overflow menu and bottom toolbar

alt text

Code Samples

    final List<String> url = new ArrayList<>();
    url.add("https://github.com/BVShe001");
    url.add("https://www.google.com");
    url.add("https://ashoka.iitp.ac.in");
    url.add("https://172.16.1.6");

    CustomTabsIntent.Builder builder = new CustomTabsIntent.Builder();
    final CustomTabsIntent customTabsIntent = builder.build();


    button1.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            customTabsIntent.launchUrl(ChromeActivity.this, Uri.parse(url.get(0)));
        }
    });

    button2.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            customTabsIntent.launchUrl(ChromeActivity.this, Uri.parse(url.get(2)));

        }
    });

    button3.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            customTabsIntent.launchUrl(ChromeActivity.this, Uri.parse(url.get(3)));

        }
    });

Installation

This package requires API level 15 or higher. The Gradle build script dependency identifier for this library is as follows:

 com.android.support:customtabs:28.0.0

CustomChromeTabs

An Android App to use Custom Chrome Tabs

customchrometabs's People

Contributors

sheetal-g9 avatar knappologi avatar ahmedmaghawry avatar amrhendy avatar rohanja avatar si-alm avatar iamrishav 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.