This repository has been archived by the owner on Jan 10, 2023. It is now read-only.
mirrored from https://chromium.googlesource.com/custom-tabs-client
-
Notifications
You must be signed in to change notification settings - Fork 351
/
ServiceConnectionActivity.java
97 lines (85 loc) · 3.26 KB
/
ServiceConnectionActivity.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
// Copyright 2015 Google Inc. All Rights Reserved.
//
// 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.
package org.chromium.customtabsdemos;
import android.net.Uri;
import android.os.Bundle;
import android.support.customtabs.CustomTabsIntent;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.EditText;
/**
* This Activity connect to the Chrome Custom Tabs Service on startup, and allows you to decide
* when to call mayLaunchUrl.
*/
public class ServiceConnectionActivity extends AppCompatActivity
implements View.OnClickListener, CustomTabActivityHelper.ConnectionCallback {
private EditText mUrlEditText;
private View mMayLaunchUrlButton;
private CustomTabActivityHelper customTabActivityHelper;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_serviceconnection);
customTabActivityHelper = new CustomTabActivityHelper();
customTabActivityHelper.setConnectionCallback(this);
mUrlEditText = (EditText) findViewById(R.id.url);
mMayLaunchUrlButton = findViewById(R.id.button_may_launch_url);
mMayLaunchUrlButton.setEnabled(false);
mMayLaunchUrlButton.setOnClickListener(this);
findViewById(R.id.start_custom_tab).setOnClickListener(this);
}
@Override
protected void onDestroy() {
super.onDestroy();
customTabActivityHelper.setConnectionCallback(null);
}
@Override
public void onCustomTabsConnected() {
mMayLaunchUrlButton.setEnabled(true);
}
@Override
public void onCustomTabsDisconnected() {
mMayLaunchUrlButton.setEnabled(false);
}
@Override
protected void onStart() {
super.onStart();
customTabActivityHelper.bindCustomTabsService(this);
}
@Override
protected void onStop() {
super.onStop();
customTabActivityHelper.unbindCustomTabsService(this);
mMayLaunchUrlButton.setEnabled(false);
}
@Override
public void onClick(View view) {
int viewId = view.getId();
Uri uri = Uri.parse(mUrlEditText.getText().toString());
switch (viewId) {
case R.id.button_may_launch_url:
customTabActivityHelper.mayLaunchUrl(uri, null, null);
break;
case R.id.start_custom_tab:
CustomTabsIntent customTabsIntent =
new CustomTabsIntent.Builder(customTabActivityHelper.getSession())
.build();
CustomTabActivityHelper.openCustomTab(
this, customTabsIntent, uri, new WebviewFallback());
break;
default:
//Unkown View Clicked
}
}
}