This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Subclass of VideoView to enable video scaling | |
* CustomAttribute: "scaleType": "normal", "centerCrop", "fill" | |
* <p> | |
* Add this stylable: | |
* <declare-styleable name="IntroVideoView"> | |
* <attr name="scaleType" format="integer"> | |
* <flag name="normal" value="0" /> | |
* <flag name="centerCrop" value="1" /> | |
* <flag name="fill" value="2" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Copyright 2012 Roman Nurik | |
* | |
* 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 |