赞
踩
添加:compile 'com.zhy:autolayout:1.4.5'
activity继承AutoLayoutActivity类
public class MainActivity extends AutoLayoutActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); } }然后再AndroidManifest.xml中添加
<meta-data android:name="design_width" android:value="768"> </meta-data> <meta-data android:name="design_height" android:value="1280"> </meta-data>然后我们就以这个为手机分辩率模板写,
也可以用下面的方式直接写:
<com.zhy.autolayout.AutoRelativeLayout android:layout_width="match_parent" android:layout_height="108px" android:layout_marginTop="26px" android:background="#ffffffff" > <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="22px" android:layout_marginTop="16px" android:text="王大炮 WANG.DAPAO8888888888888888888888888" android:textColor="#333" android:textSize="28px" /> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentBottom="true" android:layout_marginBottom="16px" android:layout_marginLeft="22px" android:text="护照:G50786449" android:textColor="#999" android:textSize="26px" /> </com.zhy.autolayout.AutoRelativeLayout>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。