Android-ScaleLayout


Source link: https://github.com/gavinliu/Android-ScaleLayout

Android-ScaleLayout

A Simple & Convenience MultiScreen-Support-Library for Android

The essence is percent scaling.

different from android-percent-support-lib

  1. More reliable
    android-percent-support-lib The percentage of the parent and child views.
    Android-ScaleLayout The percentage of the design and devices screens.

  2. More convenience
    android-percent-support-lib need to calculate percent.
    Android-ScaleLayout directly write the design size on layout.xml.

How to look?

Principle

float realPixel = percent * designPixel

Pix Mode

float realPixel = percent * designPixel  float percent = mScreenWidth / designScreenWidth  float designPixel = res.getDimensionPixelSize()
float realPixel = mScreenWidth * res.getDimensionPixelSize() / designScreenWidth

DP Mode

float realPixel = percent * designPixel  float percent = mScreenWidth / designScreenWidth float designPixel = designDP * designDensity // dp to pixel  float designDP = res.getDimensionPixelSize() / mDensity
float realPixel = (mScreenWidth * designDensity * getPixelSize()) / (designScreenWidth * mDensity)

Usage

0. dependencies

dependencies {

  compile 'cn.gavinliu.android.lib:ScaleLayout:1.0.4' 
}
 

1. Initialize

public class MyApplication extends Application {

@Override
  public void onCreate() {

ScaleConfig.create(this,

 1080, // Design Width

 1920, // Design Height

 3,
 // Design Density

 3,
 // Design FontScale

 ScaleConfig.DIMENS_UNIT_DP);

  
}
 
}

TypedValue.COMPLEX_UNIT_SP is Android FontSize unit, the fontscale: float fontScale = ctx.getResources().getDisplayMetrics().scaledDensity;

2. Scale***Layout

Only need to replace FrameLayout LinearLayout RelativeLayout to ScaleFrameLayout ScaleLinearLayout ScaleRelativeLayout.

3. Scale by width or height

Width is default, you can also changed using attr.

<attr name="layout_scale_by" format="enum">
  <enum name="width" value="0"/>
  <enum name="height" value="1"/> </attr>
app:layout_scale_by="width"

Support Attrs

<attr name="android:layout_width"/> <attr name="android:layout_height"/>  <attr name="android:layout_margin"/> <attr name="android:layout_marginLeft"/> <attr name="android:layout_marginTop"/> <attr name="android:layout_marginRight"/> <attr name="android:layout_marginBottom"/> <attr name="android:layout_marginStart"/> <attr name="android:layout_marginEnd"/>  <attr name="android:padding"/> <attr name="android:paddingLeft"/> <attr name="android:paddingTop"/> <attr name="android:paddingRight"/> <attr name="android:paddingBottom"/> <attr name="android:paddingStart"/> <attr name="android:paddingEnd"/>  <!-- TextView --> <attr name="android:textSize"/>

License

MIT

Resources

Gradle plugin that adds tasks to your android modules for installing and launching all variants.

Parallax Layer Layout let's you add layered parallax effect to your Android views or images based on things like device rotation.

Location picker component for Android. It returns a latitude,longitude and an address based on the location picked in the LocationPickerActivity provided.

Access Material Design resource values, such as colours, text sizes and dimensions, through a simple dependency.

Spinner with possibility to add hints and listeners for open/close events.

An Android image transformation library providing cropping above Face Detection (Face Centering) for Picasso.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes