One line of code handles all screen adaptation, and one line gets adaptation
One line of code to adapt all screens to AbViewUtil
Andbase framework Introduction: http://blog.csdn.net/menglele1314/article/details/46422409
Andbase framework download: http://download.csdn.net/detail/menglele1314/8786989
Import andbase open-source framework
1. First set in your application:
AbAppConfig. UI_WIDTH = 1080;
AbAppConfig. UI_HEIGHT = 700;
2. Then, in the Activity
@ Override
Protected void onCreate (Bundle savedInstanceState ){
Super. onCreate (savedInstanceState );
SetAbContentView (R. layout. add_photo );
// Root layout, recursive Scaling
AbViewUtil. scaleContentView (RelativeLayout) findViewById (R. id. rootLayout ));
}
3. When designing the layout, remember that all units are px
You can achieve universal adaptation.
Andbase framework Introduction: http://blog.csdn.net/menglele1314/article/details/46422409
Andbase framework download: http://download.csdn.net/detail/menglele1314/8786989