真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

怎么在Android中實(shí)現(xiàn)GridView布局整體居中

怎么在Android中實(shí)現(xiàn)GridView布局整體居中?相信很多沒有經(jīng)驗(yàn)的人對此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個(gè)問題。

創(chuàng)新互聯(lián)公司專注于網(wǎng)站建設(shè)|成都網(wǎng)站維護(hù)公司|優(yōu)化|托管以及網(wǎng)絡(luò)推廣,積累了大量的網(wǎng)站設(shè)計(jì)與制作經(jīng)驗(yàn),為許多企業(yè)提供了網(wǎng)站定制設(shè)計(jì)服務(wù),案例作品覆蓋木屋等行業(yè)。能根據(jù)企業(yè)所處的行業(yè)與銷售的產(chǎn)品,結(jié)合品牌形象的塑造,量身制作品質(zhì)網(wǎng)站。

/**
  * 對高度和寬度進(jìn)行統(tǒng)計(jì) 然后設(shè)置gridView的寬高。
  * @param numColumns 設(shè)定行數(shù)
  * @param gridView 
  */
public static void calGridViewSumWH(int numColumns ,GridView gridView) {
  // 獲取GridView對應(yīng)的Adapter
  ListAdapter listAdapter = gridView.getAdapter();
  if (listAdapter == null) {
   return;
  }
  int totalHeight = 0;
  int totalWidth = 0;
  for (int i = 0, len = listAdapter.getCount(); i < len; i++) { // listAdapter.getCount()返回?cái)?shù)據(jù)項(xiàng)的數(shù)目
   View listItem = listAdapter.getView(i, null, gridView);
   listItem.measure(0, 0); // 計(jì)算子項(xiàng)View 的寬高
   totalWidth = listItem.getMeasuredWidth();
   if ((i+1)%numColumns == 0) {
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
     totalHeight += listItem.getMeasuredHeight() + gridView.getVerticalSpacing(); // 統(tǒng)計(jì)所有子項(xiàng)的總高度
    } else {
     totalHeight += listItem.getMeasuredHeight();
    }
   }

   if ((i+1) == len && (i+1)%numColumns != 0) {
    totalHeight += listItem.getMeasuredHeight(); // 統(tǒng)計(jì)所有子項(xiàng)的總高度
   }
  }
  if (Build.VERSION.SDK_INT < Build.VERSION_CODES.JELLY_BEAN) {
   totalHeight += 20;
  }
  if (listAdapter.getCount() < numColumns) {
   gridView.setNumColumns(listAdapter.getCount());
  }
  ViewGroup.LayoutParams params = gridView.getLayoutParams();
  params.height = totalHeight;
  params.width = totalWidth * listAdapter.getCount();
  gridView.setLayoutParams(params);
 }

使用時(shí)相對于父布局,應(yīng)該是居中的

例: RelativeLayout android:layout_centerHorizontal="true"

看完上述內(nèi)容,你們掌握怎么在Android中實(shí)現(xiàn)GridView布局整體居中的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!


網(wǎng)站欄目:怎么在Android中實(shí)現(xiàn)GridView布局整體居中
本文地址:http://weahome.cn/article/ihgjpc.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部