StarView
An animated View inspired by StarWars. This View was extracted from StarWars.Android by Yalantis and modified as a standalone View which can be perfectly used for animated backgrounds.
Sample
Screenshot
Check out the release page for a live preview or watch the sample video on YouTube
Getting Started
Include into your Project
Add the following dependency to your project:
dependencies {
// other dependencies here...
compile 'com.pddstudio:starview:{
version
}
'
}
Make sure to replace {
version
}
with the latest release. You can find the latest version inside the badge at the top of this readme.
Include the View into your Layout
Simply add StarView
on top of your layout:
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.pddstudio.starviewdemo.MainActivity">
<com.pddstudio.starview.StarView
android:layout_width="match_parent"
android:layout_height="match_parent" />
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:src="@drawable/sw_logo"
android:scaleType="centerInside"
android:padding="64dp"/>
</RelativeLayout>
</FrameLayout> </RelativeLayout>
Make sure to wrap the content of your activity / fragment into an FrameLayout
to use it on top of StarView
Prepare the rest of your application
- StarView doesn't have any background, so it's recommended to set your Fragment/Activity background color to a darker one
About & Contact
- In case you've a question feel free to hit me up via E-Mail ( [email protected])
- or Google+
Contributors
A big thanks goes to everyone who contributed to this project! If you want to contribute to this project, feel free to do so and open a pull request with your new feature/enhancement.
License
The MIT License (MIT) Copyright © 2015 Yalantis, https://yalantis.com Copyright © 2016 PDDStudio, https://pddstudio.com Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.