diff options
author | Joe Fernandez <joefernandez@google.com> | 2014-07-31 18:43:21 +0000 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2014-07-31 18:43:21 +0000 |
commit | 8d7c55bd10127bf7dc7fae6db86c3f0a76b6f3b1 (patch) | |
tree | c1566f38da201b1f8fbd019c012c0667438b9789 /docs | |
parent | c2b74b73a11b0a9aa4f29b28554292cc0947464b (diff) | |
parent | 441e7aa23478b8de386efc69d43f889979bc6eee (diff) | |
download | frameworks_base-8d7c55bd10127bf7dc7fae6db86c3f0a76b6f3b1.zip frameworks_base-8d7c55bd10127bf7dc7fae6db86c3f0a76b6f3b1.tar.gz frameworks_base-8d7c55bd10127bf7dc7fae6db86c3f0a76b6f3b1.tar.bz2 |
am 441e7aa2: am eb4bc851: am 69ed58ac: Merge "docs: Adding TIF one-pager to TV docs in L-Preview" into klp-modular-docs
* commit '441e7aa23478b8de386efc69d43f889979bc6eee':
docs: Adding TIF one-pager to TV docs in L-Preview
Diffstat (limited to 'docs')
-rw-r--r-- | docs/html/preview/preview_toc.cs | 2 | ||||
-rw-r--r-- | docs/html/preview/tv/images/tif-overview.png | bin | 0 -> 74477 bytes | |||
-rw-r--r-- | docs/html/preview/tv/tif/index.jd | 38 |
3 files changed, 40 insertions, 0 deletions
diff --git a/docs/html/preview/preview_toc.cs b/docs/html/preview/preview_toc.cs index a505905..819976e 100644 --- a/docs/html/preview/preview_toc.cs +++ b/docs/html/preview/preview_toc.cs @@ -68,6 +68,8 @@ Recommendations</a></li> </ul> </li> + <li><a href="<?cs var:toroot ?>preview/tv/tif/index.html"> + TV Input Framework</a></li> <li><a href="<?cs var:toroot ?>preview/tv/games/index.html"> Games on TV</a></li> <li><a href="<?cs var:toroot ?>preview/tv/start/hardware-features.html"> diff --git a/docs/html/preview/tv/images/tif-overview.png b/docs/html/preview/tv/images/tif-overview.png Binary files differnew file mode 100644 index 0000000..197775e --- /dev/null +++ b/docs/html/preview/tv/images/tif-overview.png diff --git a/docs/html/preview/tv/tif/index.jd b/docs/html/preview/tv/tif/index.jd new file mode 100644 index 0000000..ef02def --- /dev/null +++ b/docs/html/preview/tv/tif/index.jd @@ -0,0 +1,38 @@ +page.title=TV Input Framework +page.tags=tif + +@jd:body + +<p> + Watching live television shows and other continuous, channel-based content is a big part of the + TV experience. Android supports receiving and playback of live video content through the TV Input + Framework. This framework provides a unified method for receiving audio and video channel content + from hardware sources, such as HDMI ports and built-in-tuners, and software sources, such as + video streamed over the internet. +</p> +<p> + The framework enables developers to define live TV input sources by implementing a TV input + service. This service publishes a list of channels and programs to the TV Provider. The live TV + app on a TV device gets the list of available channels and programs from the TV Provider and + displays them to a user. When a user selects a specific channel, the live TV app creates a + session for the associated TV input service through the TV Input Manager, and tells the TV input + service to tune to the requested channel and play the content to a display surface provided by + the TV app. +</p> + +<img src="{@docRoot}preview/tv/images/tif-overview.png" id="figure1"> +<p class="img-caption"> + <strong>Figure 1.</strong> Functional diagram of the TV Input Framework +</p> + +<p> + The TV Input Framework is designed to provide access to a wide variety of live TV input sources + and bring them together in a single user interface for users to browse, view, and enjoy content. + Building a TV input service for your content can help make it more accessible on TV devices. +</p> + +<p> + The APIs for the TV Input Framework are available in the L Developer Preview and you can + review them in the preview API reference docs. However, more changes are planned, so stay tuned + for additional information with the official Android platform launch. +</p> |