Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android系統教程 >> Android開發教程 >> Android自定義GridView顯示一行並且可以左右滑動

Android自定義GridView顯示一行並且可以左右滑動

編輯:Android開發教程

最近做一個類似滑動菜單欄的title,綁定數據源用的是GrildView,想要實現 橫著滑動並且GrildView只顯示一行。最終采用代碼形式在Activity中動態的添加 布局實現。

ViewGroup.LayoutParams params = dishtype.getLayoutParams();
              // dishtype,welist為ArrayList
                int dishtypes = welist.size();
                params.width = 115 * dishtypes;
                Log.d("看看這個寬度", 

params.width+""+welist.size());
                dishtype.setLayoutParams(params);
               //設置列數為得到的list長度
                dishtype.setNumColumns(welist.size());

布局文件采用了HorizontalScrollView 這個控件來控制左右滑動。

<HorizontalScrollView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:scrollbars="none" >
    
        <FrameLayout
            android:layout_width="match_parent"
            android:layout_height="80dp"     
            >
            <LinearLayout
                android:id="@+id/liear"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:orientation="horizontal"
                >
                <GridView
                    android:id="@+id/dishtype"
                    android:layout_width="match_parent"
                    android:layout_height="80dip"
                    android:cacheColorHint="#00000000"
                    android:columnWidth="108dip"
                    android:gravity="center"
                    android:horizontalSpacing="1.0dip"
                    android:listSelector="#00000000"
                    android:numColumns="auto_fit"
                    android:stretchMode="spacingWidthUniform"
                    android:verticalSpacing="1.0dip" >
                </GridView>
            </LinearLayout>
        </FrameLayout>
    </HorizontalScrollView>

查看本欄目更多精彩內容:http://www.bianceng.cn/OS/extra/

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