摘要:
1 //take the image to byte[] 2 byte[] byteIcon = userIcon; 3 4 //将字节数组即头像从二进制流转换成drawable 5 if(byteIcon != null){ 6 7 ByteArrayInputStream bais = new ByteArrayInputStream(byteIcon); 8 ... 阅读全文
摘要:
1 DisplayMetrics dm = new DisplayMetrics();2 //获取屏幕信息3 getWindowManager().getDefaultDisplay().getMetrics(dm);4 5 int screenWidth = dm.widthPixels;6 7 int screenHeigh = dm.heightPixels; 阅读全文
摘要:
1 int count = tabWidget.getChildCount();//TabHost中有一个getTabWidget()的方法 2 for (int i = 0; i < count; i++) { 3 View view = tabWidget.getChildTabViewAt(i); 4 view.getLayoutParams().height = 80; //tabWidget.getChildAt(i) 5 final TextView tv = (TextView) view.findViewById(android.R.id.titl... 阅读全文
摘要:
有网友表示对于很多工程中的MATCH_PARENT出现在layout中感到不明白,过去只有FILL_PARENT和WRAP_CONTENT那么match_parent到底是什么类型呢? 其实从Android 2.2开始FILL_PARENT改名为MATCH_PARENT ,从API Level为8开始我们可以直接用MATCH_PARENT来代替FILL_PARENT,最后Android123提醒大家,他们的定义本质是一样均为-1,只是换了个别名,可能为了更准确些,比如最终在SDK中的定义为:fill_parent -1 The view should be as big as its par. 阅读全文