rahuldange09 / Splashy

Splash screen library for Android

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Splashy

A Splash screen library for Android developed in Kotlin provides customizations and amazing animations by ease.
It works with both Java and Kotlin.

Download SDK 15+ Android Arsenal

Built with ❤︎ by Rahul Dange


image     image image

💻 Installation

Add this in your app's build.gradle file:

dependencies {
  implementation 'com.rbddevs.splashy:splashy:1.3.0'
  implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.72+" // For JAVA Only
}

Or add Splashy as a new dependency inside your pom.xml

<dependency>
	<groupId>com.rbddevs.splashy</groupId>
	<artifactId>splashy</artifactId>
	<version>1.3.0</version>
	<type>pom</type>
</dependency>

❔ Usage

Basic Usage

 	Splashy(this)  // For JAVA : new Splashy(this)
            .setLogo(R.drawable.splashy)
            .setTitle("Splashy")
            .show()

Advanced Usage

 override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main)
	
	// Call it immediately after any setContentView() for quick launch
	setSplashy()
}

fun setSplashy(){
	Splashy(this) 		 // For JAVA : new Splashy(this)
            .setLogo(R.drawable.splashy)
            .setTitle("Splashy")
	    .setTitleColor("#FFFFFF")
	    .setSubTitle("Splash screen made easy")
	    .setProgressColor(R.color.white)
	    .setBackgroundResource("#000000")
 	    .setFullScreen(true)
	    .setTime(5000)
            .show()	    
}
	    

Splashy.hide() AND Splashy.onComplete(getComplete: OnComplete)

fun checkLogin(){
	Splashy(this).setInfiniteDuration(true).show()   // For JAVA : new Splashy(this)

	// Some mock example response operation 
	Response.onResponse(object  : Response.onResponse{
		override fun onResponse(response){
			Splashy.hide()				// Hide after operation
		}

	}

	// Listener for completion of splash screen
	Splashy.onComplete(object : Splashy.OnComplete {
            override fun onComplete() {
	           Toast.makeText(this@MainActivity, "Logged In", Toast.LENGTH_SHORT).show()
            }

        })
}

🎨 Customization and Attributes

All customizable attributes for Splashy

Attribute Name Default Value Description
setLogo(resId : Int) R.drawable.splashy The main logo for Splashy
setTitle(resId : Int)
OR
setTitle(value : String)
R.string.app_name
OR
"Splashy"
The main title for Splashy either from strings.xml or string value
setDuration(timeInMs : Long) 2000 The time to show Splashy in Millisecond
setSubTitle(resId : Int)
OR
setSubTitle(value : String)
R.string.subtitle
OR
"Splash screen made easy"
The subtitle for Splashy either from strings.xml or string value. This also enables subtitle.
setInfiniteDuration(yes: Boolean) false Sets splash screen for infinite time if "true". Can be dismissed by calling Splashy.hide()
showTitle(show: Boolean) true To show title or not.
setTitleColor(color: Int)
OR
setTitleColor(colorValue: String)
R.color.black
OR
"#000000"
The color of title either resource id from strings.xml OR HEX value.
setTitleSize(titleSize: Float) 40F The size of title text in float.
setTitleFontStyle(fontName : String) "fonts/satisfy_regular.ttf" To set custom font for title.
setSubTitleColor(color: Int)
OR
setSubTitleColor(colorValue: String)
R.color.gray
OR
"#888888"
The color of sub title either resource id from strings.xml OR HEX value.
setSubTitleSize(titleSize: Float) 16F The size of title text in float.
setSubTitleItalic(italic : Boolean) true To set subtitle in italic style or not.
setSubTitleFontStyle(fontName : String) "fonts/satisfy_regular.ttf" To set custom font for subtitle.
showLogo(show: Boolean) true To show Logo or not.
setLogoWHinDp(width: Int, height: Int) (200, 200) To set Logo Width(W) and Height(H) in DP.
setLogoScaleType(scaleType: ImageView.ScaleType) ImageView.ScaleType.CENTER_CROP To set default scale type of Logo.
Eg. ImageView.ScaleType.CENTER_CROP, CENTER, FIT_XY and others
showProgress(show: Boolean) false To show circular progress bar or not.
setProgressColor(resId: Int)
OR
setProgressColor(value: String)
R.color.black
OR
"#000000"
To set color of progressbar either resource id from strings.xml OR HEX value. Also enables progressbar
setBackgroundColor(resId: Int)
OR
setBackgroundColor(value: String)
R.color.white
OR
"#FFFFFF"
The background of Splash screen either resource id from strings.xml OR HEX value.
setBackgroundResource(resId: Int) R.drawable.bg The background resource for splash screen from drawable.
setAnimation(type: Animation, duration: Long) (NONE,800) The amazing splash screen animations with duration.
Eg. (Splashy.Animation.SLIDE_IN_TOP_BOTTOM, 800) , Types: SLIDE_IN_TOP_BOTTOM, SLIDE_IN_LEFT_BOTTOM, SLIDE_IN_LEFT_RIGHT, SLIDE_LEFT_ENTER, GLOW_LOGO, GLOW_LOGO_TITLE, GROW_LOGO_FROM_CENTER
setClickToHide(hide: Boolean) true Hides splash screen on anywhere click.
setFullScreen(yes: Boolean) false To show splashy full screen or not.
show() -- Finally shows splash screen.
Splashy.onComplete(getComplete: OnComplete) -- Listener when splash screen ends to perform some operations
Splashy.hide() -- Hides splash screen. Helpful when set to infinite duration.

📃 License

Copyright 2019 Rahul Dange

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.

About

Splash screen library for Android

License:Apache License 2.0


Languages

Language:Kotlin 96.8%Language:Java 3.2%