Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android實現取消GridView中Item選中時默認的背景色

Android實現取消GridView中Item選中時默認的背景色

編輯:關於Android編程

本文實例講述了Android實現取消GridView中Item選中時默認的背景色。分享給大家供大家參考,具體如下:

1.  取消GridView中Item選中時默認的背景色,當使用GridView時候點擊item項時候,會有一個android默認的背景色,取消它的方法是:

game_gridview.setSelector(new ColorDrawable(Color.TRANSPARENT));
//取消GridView中Item選中時默認的背景色

2.  GridView第一個item不顯示的問題

View view = null;
if(convertView != null){
view = convertView;
}else {
  view = getLayoutInflater().inflate(R.layout.game_layout_item, null);
  view.setLayoutParams(new GridView.LayoutParams(game_gridview.getWidth() / 4, game_gridview.getHeight() / 4));
}
ImageView image_head = (ImageView) view.findViewById(R.id.image_head);
return view;

有代碼可以看出是view.setLayoutParams放錯了位置,應該放到if  else 外面。

更多關於Android相關內容感興趣的讀者可查看本站專題:《Android開發入門與進階教程》、《Android Service組件使用技巧總結》、《Android基本組件用法總結》及《Android控件用法總結》

希望本文所述對大家Android程序設計有所幫助。

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved