【Android基础入门〖8〗】SimpleAdapter之一

2024-05-04 10:08

本文主要是介绍【Android基础入门〖8〗】SimpleAdapter之一,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

目录(?)[+]

SimpleAdapter
 

Activity

主程序

listItem 中存放所有要显示的所有列数据,每 new 一个map,即 在显示的列表中 新建一行数据,Title (自定义)、Image(自定义) 只是别名,分别对应 每一行的布局 item_layout 中的 资源 ID , Title => R.id.item_text,Image => R.id.item_image。


  1. package com.michael.training;  
  2.   
  3. import java.util.ArrayList;  
  4. import java.util.HashMap;  
  5.   
  6. import android.app.Activity;  
  7. import android.os.Bundle;  
  8. import android.util.Log;  
  9. import android.view.Menu;  
  10. import android.view.View;  
  11. import android.widget.AdapterView;  
  12. import android.widget.AdapterView.OnItemClickListener;  
  13. import android.widget.ListView;  
  14. import android.widget.SimpleAdapter;  
  15. import android.widget.Toast;  
  16.   
  17. public class MainActivity extends Activity {  
  18.   
  19.     @Override  
  20.     protected void onCreate(Bundle savedInstanceState) {  
  21.         super.onCreate(savedInstanceState);  
  22.         setContentView(R.layout.main_layout);  
  23.           
  24.         ListView listView = (ListView)findViewById(R.id.mListView);  
  25.         ArrayList<HashMap<String, Object>> listItem = new ArrayList<HashMap<String, Object>>();  
  26.           
  27.         HashMap<String, Object> map = new HashMap<String, Object>();  
  28.         map.put("Title""NO.1  开发环境搭建");  
  29.         map.put("Image", R.drawable.item);  
  30.         listItem.add(map);  
  31.           
  32.         map = null;  
  33.         map = new HashMap<String, Object>();  
  34.         map.put("Title""NO.2  四大组件");  
  35.         map.put("Image", R.drawable.item);  
  36.         listItem.add(map);  
  37.           
  38.         SimpleAdapter listAdapter = new SimpleAdapter(  this,  
  39.                                 listItem,  
  40.                                 R.layout.item_layout,  
  41.                                 new String[] {"Title""Image"},  
  42.                                 new int[] {R.id.item_text,R.id.item_img});  
  43.         listView.setAdapter(listAdapter);  
  44.         listView.setOnItemClickListener(listener);  
  45.     }  
  46.       
  47.     OnItemClickListener listener=new OnItemClickListener() {  
  48.   
  49.         @Override  
  50.         public void onItemClick(AdapterView<?> arg0, View arg1, int arg2,long arg3) {  
  51.             Toast.makeText(getApplicationContext(),((Integer)arg2).toString()+"-----"+((Integer)arg2).toString(), Toast.LENGTH_SHORT).show();  
  52.         }  
  53.     };  
  54.       
  55.       
  56.       
  57.     @Override  
  58.     public boolean onCreateOptionsMenu(Menu menu) {  
  59.         // Inflate the menu; this adds items to the action bar if it is present.  
  60.         getMenuInflater().inflate(R.menu.main, menu);  
  61.         return true;  
  62.     }  
  63.   
  64. }  

main_layout.xml

主页面布局
只放了个ListView。
  1. <RelativeLayout   xmlns:android = "http://schemas.android.com/apk/res/android"  
  2.      xmlns:tools = "http://schemas.android.com/tools"  
  3.      android:layout_width = "match_parent"  
  4.      android:layout_height = "match_parent"  
  5.      tools:context = ".MainActivity"  >  
  6.     <ListView    
  7.          android:id = "@+id/mListView"  
  8.          android:layout_width = "match_parent"  
  9.          android:layout_height = "match_parent" />  
  10. </RelativeLayout>  

item_layout.xml

item布局
即ListView中每一行显示的布局,我定义了一个图片和一个文本。
  1. <? xml   version = "1.0"   encoding = "utf-8" ?>  
  2. <RelativeLayout   xmlns:android = "http://schemas.android.com/apk/res/android"  
  3.      android:layout_width = "fill_parent"  
  4.      android:layout_height = "match_parent"  
  5.      android:layout_gravity = "center_vertical"   xmlns:tools = "http://schemas.android.com/tools"   tools:ignore = "HardcodedText" >  
  6.     <ImageView  
  7.          android:id = "@+id/item_img"  
  8.          android:layout_width = "wrap_content"  
  9.          android:layout_height = "wrap_content"  
  10.          android:layout_alignParentTop = "true"  
  11.          android:layout_marginLeft = "10dp"  
  12.          android:src = "@drawable/item"  
  13.          android:contentDescription = "imageflag"   />  
  14.     <TextView  
  15.          android:id = "@+id/item_text"  
  16.          android:layout_width = "wrap_content"  
  17.          android:layout_height = "wrap_content"  
  18.          android:layout_alignBottom = "@+id/item_img"  
  19.          android:layout_alignParentRight = "true"  
  20.          android:layout_alignParentTop = "true"  
  21.          android:layout_marginTop = "4dp"  
  22.          android:layout_marginLeft = "24dp"  
  23.          android:layout_toRightOf = "@+id/item_img"  
  24.          android:gravity = "center_vertical"  
  25.          android:text = "环境搭建"  
  26.          android:textStyle = "bold"   />  
  27. </RelativeLayout>  


成果




转载请注明出处!http://blog.csdn.net/mkrcpp/article/details/9792191

这篇关于【Android基础入门〖8〗】SimpleAdapter之一的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/958946

相关文章

MySQL中my.ini文件的基础配置和优化配置方式

《MySQL中my.ini文件的基础配置和优化配置方式》文章讨论了数据库异步同步的优化思路,包括三个主要方面:幂等性、时序和延迟,作者还分享了MySQL配置文件的优化经验,并鼓励读者提供支持... 目录mysql my.ini文件的配置和优化配置优化思路MySQL配置文件优化总结MySQL my.ini文件

Android数据库Room的实际使用过程总结

《Android数据库Room的实际使用过程总结》这篇文章主要给大家介绍了关于Android数据库Room的实际使用过程,详细介绍了如何创建实体类、数据访问对象(DAO)和数据库抽象类,需要的朋友可以... 目录前言一、Room的基本使用1.项目配置2.创建实体类(Entity)3.创建数据访问对象(DAO

Android WebView的加载超时处理方案

《AndroidWebView的加载超时处理方案》在Android开发中,WebView是一个常用的组件,用于在应用中嵌入网页,然而,当网络状况不佳或页面加载过慢时,用户可能会遇到加载超时的问题,本... 目录引言一、WebView加载超时的原因二、加载超时处理方案1. 使用Handler和Timer进行超

Spring Security 从入门到进阶系列教程

Spring Security 入门系列 《保护 Web 应用的安全》 《Spring-Security-入门(一):登录与退出》 《Spring-Security-入门(二):基于数据库验证》 《Spring-Security-入门(三):密码加密》 《Spring-Security-入门(四):自定义-Filter》 《Spring-Security-入门(五):在 Sprin

Android实现任意版本设置默认的锁屏壁纸和桌面壁纸(两张壁纸可不一致)

客户有些需求需要设置默认壁纸和锁屏壁纸  在默认情况下 这两个壁纸是相同的  如果需要默认的锁屏壁纸和桌面壁纸不一样 需要额外修改 Android13实现 替换默认桌面壁纸: 将图片文件替换frameworks/base/core/res/res/drawable-nodpi/default_wallpaper.*  (注意不能是bmp格式) 替换默认锁屏壁纸: 将图片资源放入vendo

零基础学习Redis(10) -- zset类型命令使用

zset是有序集合,内部除了存储元素外,还会存储一个score,存储在zset中的元素会按照score的大小升序排列,不同元素的score可以重复,score相同的元素会按照元素的字典序排列。 1. zset常用命令 1.1 zadd  zadd key [NX | XX] [GT | LT]   [CH] [INCR] score member [score member ...]

Android平台播放RTSP流的几种方案探究(VLC VS ExoPlayer VS SmartPlayer)

技术背景 好多开发者需要遴选Android平台RTSP直播播放器的时候,不知道如何选的好,本文针对常用的方案,做个大概的说明: 1. 使用VLC for Android VLC Media Player(VLC多媒体播放器),最初命名为VideoLAN客户端,是VideoLAN品牌产品,是VideoLAN计划的多媒体播放器。它支持众多音频与视频解码器及文件格式,并支持DVD影音光盘,VCD影

数论入门整理(updating)

一、gcd lcm 基础中的基础,一般用来处理计算第一步什么的,分数化简之类。 LL gcd(LL a, LL b) { return b ? gcd(b, a % b) : a; } <pre name="code" class="cpp">LL lcm(LL a, LL b){LL c = gcd(a, b);return a / c * b;} 例题:

Java 创建图形用户界面(GUI)入门指南(Swing库 JFrame 类)概述

概述 基本概念 Java Swing 的架构 Java Swing 是一个为 Java 设计的 GUI 工具包,是 JAVA 基础类的一部分,基于 Java AWT 构建,提供了一系列轻量级、可定制的图形用户界面(GUI)组件。 与 AWT 相比,Swing 提供了许多比 AWT 更好的屏幕显示元素,更加灵活和可定制,具有更好的跨平台性能。 组件和容器 Java Swing 提供了许多

【IPV6从入门到起飞】5-1 IPV6+Home Assistant(搭建基本环境)

【IPV6从入门到起飞】5-1 IPV6+Home Assistant #搭建基本环境 1 背景2 docker下载 hass3 创建容器4 浏览器访问 hass5 手机APP远程访问hass6 更多玩法 1 背景 既然电脑可以IPV6入站,手机流量可以访问IPV6网络的服务,为什么不在电脑搭建Home Assistant(hass),来控制你的设备呢?@智能家居 @万物互联