TestGrid Adnroid

本文介绍了一个简单的 Android 应用示例,该应用使用 GridView 展示动态更新的数据列表,并通过按钮触发更新操作。代码中详细展示了如何创建 Activity、初始化 GridView、设置适配器以及实现点击事件。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >


package com.atest ;

import java.util .ArrayList ;

import android.app .Activity ;
import android.os .Bundle ;
import android.view .View ;
import android.view .View .OnClickListener ;
import android.widget .ArrayAdapter ;
import android.widget .Button ;
import android.widget .GridView ;
import android.widget .LinearLayout ;
import android.widget .LinearLayout .LayoutParams ;


public class TestGrid extends Activity implements OnClickListener {

     protected ArrayList<String> nums = new ArrayList<String>( 3 ) ;
     protected GridView listHands = null ;
     
     /** Called when the activity is first created. */
     @Override
     public void onCreate( Bundle icicle) {
          super .onCreate ( icicle) ;

          for ( int x=0 ; x < 3 ; x++) {
               nums.add ( "0" ) ;
          }
          
          setContentView( R.layout .gridview ) ;
          
          LinearLayout numbers = ( LinearLayout) findViewById( R.id .grid ) ;

          // Set width, height (-1=fill parent), weight
          LayoutParams params = new LinearLayout.LayoutParams (
                    LinearLayout.LayoutParams .WRAP_CONTENT , 30 , 1 ) ;

          this .listHands = new GridView( this ) ;
          
          listHands.setId ( 222 ) ;

          listHands.setNumColumns ( 3 ) ;
          listHands.setLayoutParams ( params) ;
          listHands.setAdapter ( new ArrayAdapter<String>( this ,
                    android.R .layout .simple_list_item_1_small , this .nums ) ) ;
          
          numbers.addView ( listHands) ;
          
          ( ( Button ) findViewById( R.id .subBtn ) ) .setOnClickListener ( this ) ;
          
     }

     /**
      * update the list after every SUBMIT click
      */

     public void onClick( View arg0) {
          // update the list
          long t = System .currentTimeMillis ( ) ;
          
          for ( int x=0 ; x < 3 ; x++) {
               this .nums .set ( x, String .valueOf ( t + x) ) ;
          }
          
          this .listHands .invalidate ( ) ;
     }    



}



Here's the XML for the screen

XML:

<?xml version ="1.0" encoding ="utf-8" ?>
<RelativeLayout id ="@+id/widget24" android:layout_width ="fill_parent"
     android:layout_height ="fill_parent" android:background ="#ffffffff"
     xmlns:android ="http://schemas.android.com/apk/res/android" >


     <LinearLayout id ="@+id/grid"
          android:layout_width ="wrap_content" android:layout_height ="50px"
          android:orientation ="vertical" android:scrollbars ="vertical" />


     <Button id ="@+id/subBtn" android:layout_width ="wrap_content"
          android:layout_height ="wrap_content" android:text ="SUBMIT"
          android:textSize ="12sp" android:layout_below ="@+id/grid" >

     </Button>

</RelativeLayout>


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值