Back to project page google-media-framework-android.
The source code is released under:
Apache License
If you think the Android project google-media-framework-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/** Copyright 2014 Google Inc. All rights reserved. //www . ja va2 s.c o m 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 com.google.android.libraries.mediaframework.layeredvideo; import android.view.LayoutInflater; import android.widget.FrameLayout; import android.widget.TextView; import com.google.android.libraries.mediaframework.R; import com.google.android.libraries.mediaframework.exoplayerextensions.ExoplayerWrapper; /** * Creates a view which displays subtitles. */ public class SubtitleLayer implements Layer, ExoplayerWrapper.TextListener { /** * The text view that displays the subtitles. */ private TextView subtitles; /** * The view that is created by this layer (it contains SubtitleLayer#subtitles). */ private FrameLayout view; @Override public FrameLayout createView(LayerManager layerManager) { LayoutInflater inflater = layerManager.getActivity().getLayoutInflater(); view = (FrameLayout) inflater.inflate(R.layout.subtitle_layer, null); subtitles = (TextView) view.findViewById(R.id.subtitles); layerManager.getExoplayerWrapper().setTextListener(this); return view; } @Override public void onLayerDisplayed(LayerManager layerManager) { } /** * When subtitles arrive, display them in the text view. * @param text The subtitles that must be displayed. */ @Override public void onText(String text) { this.subtitles.setText(text); } /** * Show or hide the subtitles. * @param visibility One of {@link android.view.View#INVISIBLE}, * {@link android.view.View#VISIBLE}, {@link android.view.View#GONE}. */ public void setVisibility(int visibility) { view.setVisibility(visibility); } }