android屏幕适配 - 超级解决方案percent-support-lib

   这个percent-support-lib包怎么解决屏幕适配的?他提供了按照百分比来作为基础布局的尺寸的参数,避免各种屏幕大小,像素密度的适配的烦心事。闲话少说,直接说用法。

   android studio直接加入以下代码

            dependencies {
                  compile 'com.android.support:percent:22.0.0'
            }

   加不成功的打开SDK Manager,将extras更新到最新版本。这个包引入完成后,有了2个新的布局文件可以用,分别是PercentFrameLayout,PercentRelativeLayout。是不是感觉少了点什么,是的,官方的lib中没PercentLinearLayout。不过没关系,大神在民间,git上有个现成的项目可以用https://github.com/JulienGenoud/android-percent-support-lib-sample。

    说说用法,其实很简单。贴上三个例子供参考:

PercentRelativeLayout



    
    
    

PercentLinearLayout


     

    

PercentFrameLayout


        



你可能感兴趣的:(android)