despectra/sdp


An Android SDK that provides a new size unit - sdp (scalable dp). This size unit scales with the screen size.

Download


Step 1. Add the JitPack repository to your build file

Add it in your root settings.gradle at the end of repositories:

	dependencyResolutionManagement {
		repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
		repositories {
			mavenCentral()
			maven { url 'https://jitpack.io' }
		}
	}

Add it in your settings.gradle.kts at the end of repositories:

	dependencyResolutionManagement {
		repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
		repositories {
			mavenCentral()
			maven { url = uri("https://jitpack.io") }
		}
	}

Add to pom.xml

	<repositories>
		<repository>
		    <id>jitpack.io</id>
		    <url>https://jitpack.io</url>
		</repository>
	</repositories>

Add it in your build.sbt at the end of resolvers:

 
    resolvers += "jitpack" at "https://jitpack.io"
        
    

Add it in your project.clj at the end of repositories:

 
    :repositories [["jitpack" "https://jitpack.io"]]
        
    

Step 2. Add the dependency

	dependencies {
		implementation 'com.github.despectra:sdp:1.0'
	}
	dependencies {
		implementation("com.github.despectra:sdp:1.0")
	}
	<dependency>
	    <groupId>com.github.despectra</groupId>
	    <artifactId>sdp</artifactId>
	    <version>1.0</version>
	</dependency>

                            
    libraryDependencies += "com.github.despectra" % "sdp" % "1.0"
        
        

                            
    :dependencies [[com.github.despectra/sdp "1.0"]]
        
        

Readme


SDP - a scalable size unit

An android SDK that provides a new size unit - sdp (scalable dp). This size unit scales with the screen size. It can help Android developers with supporting multiple screens.

Attention

Use it carefully! for example, in most cases you still need to design a different layout for tablets.

Example

Here is a single layout built using sdp:

sdp example

And here is the same layout built using dp:

dp example

You can see that sdp scales with the screen size and the dp stays with the same size on all screen sizes.

Getting Started

To add sdp to your project:

  1. Using Android Studio and Gradle:

    add compile 'com.intuit.sdp:sdp-android:1.0.3' to your build.gradle dependencies block.

    for example:

    dependencies {
     compile 'com.intuit.sdp:sdp-android:1.0.3'
    }
    
  2. Using Eclipse ADT:

    add sdp as a library to your project.

See the sdp_example.xml to see how to use to the sdp size unit.

Note

The sdp size unit calculation includes some approximation due to some performance and usability constraints.