IslamKhSh / sizes

Set of utilities to work with the Size abstraction in Android.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Download

Android Sizes

Set of utilities to work with the Size abstraction in Android.

How to use?

Get Screen width and height

ISize size = new SizeFromDisplay(getWindowManager().getDefaultDisplay());
size.width();
size.height();

Get video width and height

ISize size = new SizeFromVideoFile(videoFilePath);
size.width();
size.height();

Get image file width and height

ISize size = new SizeFromImage(imgFilePath);
size.width();
size.height();

How to set-up?

repositories {
    jcenter()
}
dependencies {
    compile 'com.github.sokolyaka:androidsizes:1.0.4'
}

About

Set of utilities to work with the Size abstraction in Android.


Languages

Language:Java 100.0%