小編給大家分享一下Android編程如何處理窗口控件大小,形狀,像素等UI元素工具類,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
成都創(chuàng)新互聯(lián)專注于企業(yè)營銷型網(wǎng)站、網(wǎng)站重做改版、覃塘網(wǎng)站定制設(shè)計、自適應(yīng)品牌網(wǎng)站建設(shè)、HTML5、商城建設(shè)、集團公司官網(wǎng)建設(shè)、成都外貿(mào)網(wǎng)站建設(shè)公司、高端網(wǎng)站制作、響應(yīng)式網(wǎng)頁設(shè)計等建站業(yè)務(wù),價格優(yōu)惠性價比高,為覃塘等各大城市提供網(wǎng)站開發(fā)制作服務(wù)。
具體如下:
/** * 處理窗口控件大小,形狀,像素等工具類 * * @author chen.lin * */ public class UITools { /** * 把像素轉(zhuǎn)化為dp * * @param context * @param px * @return */ public static int px2dip(Context context, float px) { float density = context.getResources().getDisplayMetrics().density; return (int) (px * density + 0.5f); } /** * 設(shè)置窗體的寬度 * @param context */ public static void setWinWidth(Activity context) { DisplayMetrics metric = new DisplayMetrics(); context.getWindowManager().getDefaultDisplay().getMetrics(metric); LayoutParams p = context.getWindow().getAttributes(); p.width = (int) (metric.widthPixels * 0.8); context.getWindow().setAttributes(p); } /** * 設(shè)置彈出窗口中l(wèi)istview的高度 * * @param listView */ public static void setListViewHeight(ListView listView) { // 獲取ListView對應(yīng)的Adapter ListAdapter listAdapter = listView.getAdapter(); if (listAdapter == null) { return; } int totalHeight = 0; for (int i = 0, len = listAdapter.getCount(); i < len; i++) { // listAdapter.getCount()返回數(shù)據(jù)項的數(shù)目 View listItem = listAdapter.getView(i, null, listView); listItem.measure(0, 0); // 計算子項View 的寬高 totalHeight += listItem.getMeasuredHeight(); // 統(tǒng)計所有子項的總高度 } ViewGroup.LayoutParams params = listView.getLayoutParams(); params.height = totalHeight + (listView.getDividerHeight() * (listAdapter.getCount() - 1)); // listView.getDividerHeight()獲取子項間分隔符占用的高度 // params.height最后得到整個ListView完整顯示需要的高度 listView.setLayoutParams(params); } }
以上是“Android編程如何處理窗口控件大小,形狀,像素等UI元素工具類”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!