码迷,mamicode.com
首页 > 移动开发 > 详细

android Xml生成一条细线

时间:2016-07-10 15:27:27      阅读:326      评论:0      收藏:0      [点我收藏+]

标签:

<View
 android:layout_width="match_parent" 
android:layout_height
="2dip" android:background="#FF909090"
android:layout_marginLeft
="40dip" android:layout_marginRight="40dip"
android:layout_marginTop="10dip" />

转载http://www.cnblogs.com/henryxu/archive/2013/04/10/3012081.html

//android获取屏幕的高度和宽度用到WindowManager这个类,两种方法: 
 //第一种
WindowManager wm = (WindowManager) getContext()
                    .getSystemService(Context.WINDOW_SERVICE);
 
     int width = wm.getDefaultDisplay().getWidth();
     int height = wm.getDefaultDisplay().getHeight();
 //第二种
WindowManager wm = this.getWindowManager();
 
     int width = wm.getDefaultDisplay().getWidth();
     int height = wm.getDefaultDisplay().getHeight();

 

android Xml生成一条细线

标签:

原文地址:http://www.cnblogs.com/jiutiankunpeng/p/5657667.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!