二.屏幕适配

/**  将此文件直接复制到项目中,不要忘记清单文件配置Application,另 布局中使用pt
  * (例如: android:layout_height="300pt" 用错可不适配哦!)
  * feisher  @2017年8月11日14:52:27 二次整理,原稿 为新浪大牛 布隆  
  * [email protected]
  */
  public class MyApplication extends Application{

    public final static float DESIGN_WIDTH = 750; //绘制页面时参照的设计图宽度

    @Override
    public void onCreate() {
        super.onCreate();
        resetDensity();//注意不要漏掉
    }

    @Override
    public void onConfigurationChanged(Configuration newConfig) {
          super.onConfigurationChanged(newConfig);
          resetDensity();//这个方法重写也是很有必要的
    }

      public void resetDensity(){
          Point size = new Point();
          ((WindowManager)getSystemService(WINDOW_SERVICE)).getDefaultDisplay().getSize(size);
          getResources().getDisplayMetrics().xdpi = size.x/DESIGN_WIDTH*72f;
      }
  }

参考网址:https://feisher.github.io/ScreenAdapter/

猜你喜欢

转载自blog.csdn.net/shitou0/article/details/80302088