首页 > 代码库 > 九 宫 格

九 宫 格

首先是布局,布局没什么好说的,估计大家都差不多

直接进入

技术分享
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.example.a15083.testnine.MainActivity">

    <GridView
        android:id="@+id/grid_view"
        android:numColumns="3"
        android:stretchMode="columnWidth"
        android:gravity="center"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"/>
</LinearLayout>
View Code

上一点Java给你们看一眼

技术分享
//设置图片资源
    int[] imgId = new int[]{R.drawable.a,R.drawable.b,R.drawable.c,R.drawable.d,R.drawable.e,R.drawable.f,R.drawable.g,R.drawable.h,R.drawable.i,R.drawable.j,R.drawable.k,R.drawable.l,R.drawable.m,R.drawable.n,R.drawable.o};
    private SimpleAdapter simpleAdapter;
View Code

就一眼,不能多看

没了

九 宫 格