SlideShare a Scribd company logo
1 of 45
Download to read offline
k y o b a s h i . d e x # 2
C h ro m e C u s t o m Ta b s
使 用 と 例
A b o u t m e
A b o u t m e
• Kenji Tazawa
• Android Engineer
• Recruit Marketing Partners Co.,Ltd
C h ro m e C u s t o m Ta b s
C h ro m e C u s t o m Ta b s
• 機能を紹介
• 使用例を紹介
C h ro m e C u s t o m Ta b s
• 機能を紹介
• 使用例を紹介
V S We b V i e w, I n t e n t ( B ro w s e r A p p )
WebView,Intent (Browser App)
V S We b V i e w, I n t e n t ( B ro w s e r A p p )
WebView,Intent (Browser App)
• Browser Appでは遷移してからWebサイトを表示す
るまでが重い、遅い
• Browser Appでは別アプリの表示となるなのでUIに
統一感を出せない(シームレスに表示できない)
• WebViewではセキュリティへの懸念がある
V S We b V i e w, I n t e n t ( B ro w s e r A p p )
Chrome Custom Tabs
V S We b V i e w, I n t e n t ( B ro w s e r A p p )
Chrome Custom Tabs
• Prefetchによる表示速度の向上
• UIのカスタマイズが可能
• Choromeベースのセキュリティと機能
翻訳、パスワード自動保存、オートフィル、
タップして検索、etc…
※ Chromeインストール済み v45以上
H o w t o
H o w t o
See -> NET BIZ DIV.TECH BLOG
はじめての Chrome Custom Tabs
http://tech.recruit-mp.co.jp/mobile/post-7628/
H o w t o - D e f a u l t
CustomTabsIntent tabsIntent = new CustomTabsIntent.Builder().build();



String packageName = CustomTabsHelper.getPackageNameToUse(this);

tabsIntent.intent.setPackage(packageName);

tabsIntent.launchUrl(this, URI);
H o w t o - D e f a u l t
H o w t o - C u s t o m
CustomTabsIntent.Builder builder = new CustomTabsIntent.Builder();



CustomTabsIntent tabsIntent = builder.setShowTitle(true)

.enableUrlBarHiding()

.setToolbarColor(getResources().getColor(R.color.brand_sub))

.setCloseButtonIcon(BitmapFactory.decodeResource(getResources(
R.drawable.ic_arrow_back))

.setStartAnimations(this, R.anim.slide_in_right,
R.anim.slide_out_left)

.setExitAnimations(this, android.R.anim.slide_in_left,
android.R.anim.slide_out_right)

.build();



String packageName = CustomTabsHelper.getPackageNameToUse(this);

tabsIntent.intent.setPackage(packageName);

tabsIntent.launchUrl(this, URI);
H o w t o - C u s t o m
CustomTabsIntent.Builder builder = new CustomTabsIntent.Builder();



CustomTabsIntent tabsIntent = builder.setShowTitle(true)

.enableUrlBarHiding()

.setToolbarColor(getResources().getColor(R.color.brand_sub))

.setCloseButtonIcon(BitmapFactory.decodeResource(getResources(
R.drawable.ic_arrow_back))

.setStartAnimations(this, R.anim.slide_in_right,
R.anim.slide_out_left)

.setExitAnimations(this, android.R.anim.slide_in_left,
android.R.anim.slide_out_right)

.build();



String packageName = CustomTabsHelper.getPackageNameToUse(this);

tabsIntent.intent.setPackage(packageName);

tabsIntent.launchUrl(this, URI);
H o w t o - C u s t o m
H o w t o - P re F e t c h
長いので省略
H o w t o
See -> NET BIZ DIV.TECH BLOG
はじめての Chrome Custom Tabs
http://tech.recruit-mp.co.jp/mobile/post-7628/
再掲
H o w t o - P re F e t c h
体感速度の違いだけ紹介
H o w t o - P re F e t c h
C h ro m e C u s t o m Ta b s
• 機能を紹介
• 使用例を紹介
C h ro m e C u s t o m Ta b s
• 機能を紹介
• 使用例を紹介
C h ro m e C u s t o m Ta b s
• 機能を紹介
• 使用例を紹介
使用例から思ったこと
A p p s
• Twitter
• Feedly
• Stack Exchange
• Skyscanner
A p p s
– A n d ro i d D e v e l o p e r s B l o g : C h ro m e c u s t o m t a b s s m o o t h t h e
t r a n s i t i o n b e t w e e n a p p s a n d t h e w e b
“Users will begin to experience custom tabs in the
coming weeks in Feedly, The Guardian, Medium,
Player.fm, Skyscanner, Stack Overflow, Tumblr, and
Twitter, with more coming soon. To get started
integrating custom tabs into your own application,
check out the developer guide.”
A p p s
Skyscanner
A p p s
Skyscanner
デザイン、画面遷移時の

アニメーションが統一
A p p s
Stack Exchange
A p p s
Stack Exchange
デザイン、画面遷移時の

アニメーションが統一
A p p s
シームレスに表示したい場合はToolbarの色は
Appのテーマカラーに合わせ、遷移時のアニ
メーションも統一している
A p p s
Feedly
A p p s
Feedly
デザイン、画面遷移時の

アニメーションが統一
A p p s
Feedly 表示方法の変更が可能
A p p s
RSSリーダーのような外部コンテンツに多く遷移
するアプリの場合は、ユーザー毎でブラウジン
グする方法に違いがあるため選択の余地を残し
ている
A p p s
Twitter
A p p s
Twitter
デザイン、画面遷移時の

アニメーションを統一していない
A p p s
Twitter 表示方法の変更が可能
A p p s
明確にアプリコンテンツ外としてWebサイトを
表示したい場合は遷移時のアニメーションを通
常と異なるものにし、Toolbarの色も統一しない
C h ro m e C u s t o m Ta b s
• 機能を紹介
• 使用例を紹介
C h ro m e C u s t o m Ta b s
• 機能を紹介
• 使用例を紹介
S u m m a r y
S u m m a r y
導入は簡単
S u m m a r y
ただ導入するのではなく、Appが提供する機能
にあわせてデザイン、実装、ユーザーのサポー
トをしていしましょう
t h a n k s

More Related Content

Recently uploaded

論文紹介:Automated Classification of Model Errors on ImageNet
論文紹介:Automated Classification of Model Errors on ImageNet論文紹介:Automated Classification of Model Errors on ImageNet
論文紹介:Automated Classification of Model Errors on ImageNetToru Tamaki
 
論文紹介:Content-Aware Token Sharing for Efficient Semantic Segmentation With Vis...
論文紹介:Content-Aware Token Sharing for Efficient Semantic Segmentation With Vis...論文紹介:Content-Aware Token Sharing for Efficient Semantic Segmentation With Vis...
論文紹介:Content-Aware Token Sharing for Efficient Semantic Segmentation With Vis...Toru Tamaki
 
Open Source UN-Conference 2024 Kawagoe - 独自OS「DaisyOS GB」の紹介
Open Source UN-Conference 2024 Kawagoe - 独自OS「DaisyOS GB」の紹介Open Source UN-Conference 2024 Kawagoe - 独自OS「DaisyOS GB」の紹介
Open Source UN-Conference 2024 Kawagoe - 独自OS「DaisyOS GB」の紹介Yuma Ohgami
 
[DevOpsDays Tokyo 2024] 〜デジタルとアナログのはざまに〜 スマートビルディング爆速開発を支える 自動化テスト戦略
[DevOpsDays Tokyo 2024] 〜デジタルとアナログのはざまに〜 スマートビルディング爆速開発を支える 自動化テスト戦略[DevOpsDays Tokyo 2024] 〜デジタルとアナログのはざまに〜 スマートビルディング爆速開発を支える 自動化テスト戦略
[DevOpsDays Tokyo 2024] 〜デジタルとアナログのはざまに〜 スマートビルディング爆速開発を支える 自動化テスト戦略Ryo Sasaki
 
論文紹介:Semantic segmentation using Vision Transformers: A survey
論文紹介:Semantic segmentation using Vision Transformers: A survey論文紹介:Semantic segmentation using Vision Transformers: A survey
論文紹介:Semantic segmentation using Vision Transformers: A surveyToru Tamaki
 
Postman LT Fukuoka_Quick Prototype_By Daniel
Postman LT Fukuoka_Quick Prototype_By DanielPostman LT Fukuoka_Quick Prototype_By Daniel
Postman LT Fukuoka_Quick Prototype_By Danieldanielhu54
 
スマートフォンを用いた新生児あやし動作の教示システム
スマートフォンを用いた新生児あやし動作の教示システムスマートフォンを用いた新生児あやし動作の教示システム
スマートフォンを用いた新生児あやし動作の教示システムsugiuralab
 
TSAL operation mechanism and circuit diagram.pdf
TSAL operation mechanism and circuit diagram.pdfTSAL operation mechanism and circuit diagram.pdf
TSAL operation mechanism and circuit diagram.pdftaisei2219
 
SOPを理解する 2024/04/19 の勉強会で発表されたものです
SOPを理解する       2024/04/19 の勉強会で発表されたものですSOPを理解する       2024/04/19 の勉強会で発表されたものです
SOPを理解する 2024/04/19 の勉強会で発表されたものですiPride Co., Ltd.
 
【早稲田AI研究会 講義資料】3DスキャンとTextTo3Dのツールを知ろう!(Vol.1)
【早稲田AI研究会 講義資料】3DスキャンとTextTo3Dのツールを知ろう!(Vol.1)【早稲田AI研究会 講義資料】3DスキャンとTextTo3Dのツールを知ろう!(Vol.1)
【早稲田AI研究会 講義資料】3DスキャンとTextTo3Dのツールを知ろう!(Vol.1)Hiroki Ichikura
 

Recently uploaded (10)

論文紹介:Automated Classification of Model Errors on ImageNet
論文紹介:Automated Classification of Model Errors on ImageNet論文紹介:Automated Classification of Model Errors on ImageNet
論文紹介:Automated Classification of Model Errors on ImageNet
 
論文紹介:Content-Aware Token Sharing for Efficient Semantic Segmentation With Vis...
論文紹介:Content-Aware Token Sharing for Efficient Semantic Segmentation With Vis...論文紹介:Content-Aware Token Sharing for Efficient Semantic Segmentation With Vis...
論文紹介:Content-Aware Token Sharing for Efficient Semantic Segmentation With Vis...
 
Open Source UN-Conference 2024 Kawagoe - 独自OS「DaisyOS GB」の紹介
Open Source UN-Conference 2024 Kawagoe - 独自OS「DaisyOS GB」の紹介Open Source UN-Conference 2024 Kawagoe - 独自OS「DaisyOS GB」の紹介
Open Source UN-Conference 2024 Kawagoe - 独自OS「DaisyOS GB」の紹介
 
[DevOpsDays Tokyo 2024] 〜デジタルとアナログのはざまに〜 スマートビルディング爆速開発を支える 自動化テスト戦略
[DevOpsDays Tokyo 2024] 〜デジタルとアナログのはざまに〜 スマートビルディング爆速開発を支える 自動化テスト戦略[DevOpsDays Tokyo 2024] 〜デジタルとアナログのはざまに〜 スマートビルディング爆速開発を支える 自動化テスト戦略
[DevOpsDays Tokyo 2024] 〜デジタルとアナログのはざまに〜 スマートビルディング爆速開発を支える 自動化テスト戦略
 
論文紹介:Semantic segmentation using Vision Transformers: A survey
論文紹介:Semantic segmentation using Vision Transformers: A survey論文紹介:Semantic segmentation using Vision Transformers: A survey
論文紹介:Semantic segmentation using Vision Transformers: A survey
 
Postman LT Fukuoka_Quick Prototype_By Daniel
Postman LT Fukuoka_Quick Prototype_By DanielPostman LT Fukuoka_Quick Prototype_By Daniel
Postman LT Fukuoka_Quick Prototype_By Daniel
 
スマートフォンを用いた新生児あやし動作の教示システム
スマートフォンを用いた新生児あやし動作の教示システムスマートフォンを用いた新生児あやし動作の教示システム
スマートフォンを用いた新生児あやし動作の教示システム
 
TSAL operation mechanism and circuit diagram.pdf
TSAL operation mechanism and circuit diagram.pdfTSAL operation mechanism and circuit diagram.pdf
TSAL operation mechanism and circuit diagram.pdf
 
SOPを理解する 2024/04/19 の勉強会で発表されたものです
SOPを理解する       2024/04/19 の勉強会で発表されたものですSOPを理解する       2024/04/19 の勉強会で発表されたものです
SOPを理解する 2024/04/19 の勉強会で発表されたものです
 
【早稲田AI研究会 講義資料】3DスキャンとTextTo3Dのツールを知ろう!(Vol.1)
【早稲田AI研究会 講義資料】3DスキャンとTextTo3Dのツールを知ろう!(Vol.1)【早稲田AI研究会 講義資料】3DスキャンとTextTo3Dのツールを知ろう!(Vol.1)
【早稲田AI研究会 講義資料】3DスキャンとTextTo3Dのツールを知ろう!(Vol.1)
 

Featured

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by HubspotMarius Sescu
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTExpeed Software
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsPixeldarts
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthThinkNow
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfmarketingartwork
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024Neil Kimberley
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)contently
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024Albert Qian
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsKurio // The Social Media Age(ncy)
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Search Engine Journal
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summarySpeakerHub
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next Tessa Mero
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentLily Ray
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best PracticesVit Horky
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project managementMindGenius
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...RachelPearson36
 

Featured (20)

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPT
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 

Chorome Custom Tabs - first step

  • 1. k y o b a s h i . d e x # 2 C h ro m e C u s t o m Ta b s 使 用 と 例
  • 2. A b o u t m e
  • 3. A b o u t m e • Kenji Tazawa • Android Engineer • Recruit Marketing Partners Co.,Ltd
  • 4. C h ro m e C u s t o m Ta b s
  • 5. C h ro m e C u s t o m Ta b s • 機能を紹介 • 使用例を紹介
  • 6. C h ro m e C u s t o m Ta b s • 機能を紹介 • 使用例を紹介
  • 7. V S We b V i e w, I n t e n t ( B ro w s e r A p p ) WebView,Intent (Browser App)
  • 8. V S We b V i e w, I n t e n t ( B ro w s e r A p p ) WebView,Intent (Browser App) • Browser Appでは遷移してからWebサイトを表示す るまでが重い、遅い • Browser Appでは別アプリの表示となるなのでUIに 統一感を出せない(シームレスに表示できない) • WebViewではセキュリティへの懸念がある
  • 9. V S We b V i e w, I n t e n t ( B ro w s e r A p p ) Chrome Custom Tabs
  • 10. V S We b V i e w, I n t e n t ( B ro w s e r A p p ) Chrome Custom Tabs • Prefetchによる表示速度の向上 • UIのカスタマイズが可能 • Choromeベースのセキュリティと機能 翻訳、パスワード自動保存、オートフィル、 タップして検索、etc… ※ Chromeインストール済み v45以上
  • 11. H o w t o
  • 12. H o w t o See -> NET BIZ DIV.TECH BLOG はじめての Chrome Custom Tabs http://tech.recruit-mp.co.jp/mobile/post-7628/
  • 13. H o w t o - D e f a u l t CustomTabsIntent tabsIntent = new CustomTabsIntent.Builder().build();
 
 String packageName = CustomTabsHelper.getPackageNameToUse(this);
 tabsIntent.intent.setPackage(packageName);
 tabsIntent.launchUrl(this, URI);
  • 14. H o w t o - D e f a u l t
  • 15. H o w t o - C u s t o m CustomTabsIntent.Builder builder = new CustomTabsIntent.Builder();
 
 CustomTabsIntent tabsIntent = builder.setShowTitle(true)
 .enableUrlBarHiding()
 .setToolbarColor(getResources().getColor(R.color.brand_sub))
 .setCloseButtonIcon(BitmapFactory.decodeResource(getResources( R.drawable.ic_arrow_back))
 .setStartAnimations(this, R.anim.slide_in_right, R.anim.slide_out_left)
 .setExitAnimations(this, android.R.anim.slide_in_left, android.R.anim.slide_out_right)
 .build();
 
 String packageName = CustomTabsHelper.getPackageNameToUse(this);
 tabsIntent.intent.setPackage(packageName);
 tabsIntent.launchUrl(this, URI);
  • 16. H o w t o - C u s t o m CustomTabsIntent.Builder builder = new CustomTabsIntent.Builder();
 
 CustomTabsIntent tabsIntent = builder.setShowTitle(true)
 .enableUrlBarHiding()
 .setToolbarColor(getResources().getColor(R.color.brand_sub))
 .setCloseButtonIcon(BitmapFactory.decodeResource(getResources( R.drawable.ic_arrow_back))
 .setStartAnimations(this, R.anim.slide_in_right, R.anim.slide_out_left)
 .setExitAnimations(this, android.R.anim.slide_in_left, android.R.anim.slide_out_right)
 .build();
 
 String packageName = CustomTabsHelper.getPackageNameToUse(this);
 tabsIntent.intent.setPackage(packageName);
 tabsIntent.launchUrl(this, URI);
  • 17. H o w t o - C u s t o m
  • 18. H o w t o - P re F e t c h 長いので省略
  • 19. H o w t o See -> NET BIZ DIV.TECH BLOG はじめての Chrome Custom Tabs http://tech.recruit-mp.co.jp/mobile/post-7628/ 再掲
  • 20. H o w t o - P re F e t c h 体感速度の違いだけ紹介
  • 21. H o w t o - P re F e t c h
  • 22. C h ro m e C u s t o m Ta b s • 機能を紹介 • 使用例を紹介
  • 23. C h ro m e C u s t o m Ta b s • 機能を紹介 • 使用例を紹介
  • 24. C h ro m e C u s t o m Ta b s • 機能を紹介 • 使用例を紹介 使用例から思ったこと
  • 25. A p p s • Twitter • Feedly • Stack Exchange • Skyscanner
  • 26. A p p s – A n d ro i d D e v e l o p e r s B l o g : C h ro m e c u s t o m t a b s s m o o t h t h e t r a n s i t i o n b e t w e e n a p p s a n d t h e w e b “Users will begin to experience custom tabs in the coming weeks in Feedly, The Guardian, Medium, Player.fm, Skyscanner, Stack Overflow, Tumblr, and Twitter, with more coming soon. To get started integrating custom tabs into your own application, check out the developer guide.”
  • 27. A p p s Skyscanner
  • 28. A p p s Skyscanner デザイン、画面遷移時の アニメーションが統一
  • 29. A p p s Stack Exchange
  • 30. A p p s Stack Exchange デザイン、画面遷移時の アニメーションが統一
  • 31. A p p s シームレスに表示したい場合はToolbarの色は Appのテーマカラーに合わせ、遷移時のアニ メーションも統一している
  • 32. A p p s Feedly
  • 33. A p p s Feedly デザイン、画面遷移時の アニメーションが統一
  • 34. A p p s Feedly 表示方法の変更が可能
  • 35. A p p s RSSリーダーのような外部コンテンツに多く遷移 するアプリの場合は、ユーザー毎でブラウジン グする方法に違いがあるため選択の余地を残し ている
  • 36. A p p s Twitter
  • 37. A p p s Twitter デザイン、画面遷移時の アニメーションを統一していない
  • 38. A p p s Twitter 表示方法の変更が可能
  • 39. A p p s 明確にアプリコンテンツ外としてWebサイトを 表示したい場合は遷移時のアニメーションを通 常と異なるものにし、Toolbarの色も統一しない
  • 40. C h ro m e C u s t o m Ta b s • 機能を紹介 • 使用例を紹介
  • 41. C h ro m e C u s t o m Ta b s • 機能を紹介 • 使用例を紹介
  • 42. S u m m a r y
  • 43. S u m m a r y 導入は簡単
  • 44. S u m m a r y ただ導入するのではなく、Appが提供する機能 にあわせてデザイン、実装、ユーザーのサポー トをしていしましょう
  • 45. t h a n k s