StarView

General

Category
Free
Tag
Views
License
MIT License
Min SDK
16 (Android 4.1 Jelly Bean)
Registered
Feb 4, 2016
Favorites
6
Link
https://github.com/PDDStudio/StarView
See also
ChatBar
MultiStateView
InstaDot
Aquery
VectorSupportView

Additional

Language
Java
Version
1.1.0 (Jan 12, 2017)
Created
Feb 2, 2016
Updated
May 9, 2017 (Retired)
Owner
Patrick Jung (PDDStudio)
Contributors
Patrick Jung (PDDStudio)
Tristan Vanderaerden (tristanvda)
2
Activity
Badge
Generate
Download
Source code

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

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.