码迷,mamicode.com
首页 > 其他好文 > 详细

九 宫 格

时间:2017-05-08 16:55:41      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:idt   parent   ddb   gid   ati   grid   simple   height   private   

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

直接进入

技术分享
<?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

就一眼,不能多看

没了

九 宫 格

标签:idt   parent   ddb   gid   ati   grid   simple   height   private   

原文地址:http://www.cnblogs.com/wangqiandage/p/6825764.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!