Popularity
0.9
Stable
Activity
2.4
-
8
2
4

Programming language: Kotlin
Tags: Kotlin     Android     Layout     Android-library     Dimen    

Auto Adjust Scalable Dimension Library alternatives and similar packages

Based on the "Kotlin" category.
Alternatively, view Auto Adjust Scalable Dimension Library alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of Auto Adjust Scalable Dimension Library or a related project?

Add another 'Kotlin' Package

README

Auto Adjust Scalable Dimension Library

Platform API Download

Twitter Codacy Badge

This is an Android library allowing to auto adjust the density and scale pixels.

USAGE

To use this library in your project Using Android Studio and Gradle:

implementation 'com.auto.adjust:dimens:1.0.9'

XML


android:layout_width="@dimen/_100adp"

android:layout_height="@dimen/_100adp"

android:padding="@dimen/_8adp"

android:margin="@dimen/_8adp"

android:textSize="@dimen/_11asp"

You must use the following properties in your XML.

Properties Descriptions
@dimen/_100adp For positive dimens
@dimen/_100_minus_adp For negative dimens
@dimen/_11asp For text sizes

KOTLIN


resources.getDimensionPixelSize(R.dimen._100adp)
resources.getDimensionPixelSize(R.dimen._11asp)

JAVA


getResources().getDimensionPixelOffset(R.dimen._100adp);
getResources().getDimensionPixelOffset(R.dimen._11asp);

COMPARISION

+---------+-------------+---------------+-------------+--------------------+
| Unit    | Description | Units Per     | Density     | Same Physical Size |
|         |             | Physical Inch | Independent | On Every Screen    |
+---------+-------------+---------------+-------------+--------------------+
| px      | Pixels      | Varies        | No          | No                 |
+---------+-------------+---------------+-------------+--------------------+
| in      | Inches      | 1             | Yes         | Yes                |
+---------+-------------+---------------+-------------+--------------------+
| mm      | Millimeters | 25.4          | Yes         | Yes                |
+---------+-------------+---------------+-------------+--------------------+
| pt      | Points      | 72            | Yes         | Yes                |
+---------+-------------+---------------+-------------+--------------------+
| dp      | Density     | ~160          | Yes         | No                 |
|         | Independent |               |             |                    |
|         | Pixels      |               |             |                    |
+---------+-------------+---------------+-------------+--------------------+
| sp      | Scale       | ~160          | Yes         | No                 |
|         | Independent |               |             |                    |
|         | Pixels      |               |             |                    |
+---------+-------------+---------------+-------------+--------------------+
| adp     | Auto        | ~160          | Yes         | Yes                |
|         | Density     |               |             |                    |
|         | Independent |               |             |                    |
|         | Pixels      |               |             |                    |
+---------+-------------+---------------+-------------+--------------------+
| asp     | Auto        | ~160          | Yes         | Yes                |
|         | Scale       |               |             |                    |
|         | Independent |               |             |                    |
|         | Pixels      |               |             |                    |
+---------+-------------+---------------+-------------+--------------------+

More info can be also be found in the Google Design Documentation.

LIMITATION

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

SUPPORT โค๏ธ

Find this library useful? Support it by joining stargazers for this repository โญ๏ธ And follow me for my next creations ๐Ÿ‘

LICENCE

Auto Adjust Dimension Android Kotlin Library by Aman Jham is licensed under a Apache License 2.0.


*Note that all licence references and agreements mentioned in the Auto Adjust Scalable Dimension Library README section above are relevant to that project's source code only.