`
shenjichao2009
  • 浏览: 96143 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

Android中ListView的使用

 
阅读更多

user.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="
http://schemas.android.com/apk/res/android"
 android:orientation="horizontal" android:layout_width="fill_parent"
 android:layout_height="fill_parent">

 <!-- 用户名文本 -->
 <TextView android:id="@+id/userNameId" android:layout_width="wrap_content"
  android:layout_height="wrap_content" android:textSize="10pt"
  android:gravity="left" />

 <!-- IP文本 -->
 <TextView android:id="@+id/ipId" android:layout_width="fill_parent"
  android:layout_height="wrap_content" android:textSize="10pt"
  android:gravity="right" />

</LinearLayout>

 

main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="
http://schemas.android.com/apk/res/android"
 android:orientation="vertical" android:layout_width="fill_parent"
 android:layout_height="fill_parent">

 <LinearLayout android:layout_width="fill_parent"
  android:layout_height="wrap_content" android:orientation="vertical"
  android:paddingLeft="10px" android:paddingRight="10px"
  android:paddingTop="10px" android:paddingBottom="10px">

  <ListView android:id="@id/android:list" android:layout_width="fill_parent"
   android:layout_height="wrap_content" android:scrollbars="vertical"
   android:drawSelectorOnTop="true" />

 </LinearLayout>

</LinearLayout>

 

ListViewActivity.java

package com.duoguo.android;

import java.util.ArrayList;
import java.util.HashMap;

import android.app.ListActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.ListView;
import android.widget.SimpleAdapter;

/**
 * ListView的使用
 *
 * @author shyboy(
897948924@qq.com)
 *
 */
public class ListViewActivity extends ListActivity {

 @Override
 public void onCreate(Bundle savedInstanceState) {

  super.onCreate(savedInstanceState);
  setContentView(R.layout.main);

  ArrayList<HashMap<String, String>> list = new ArrayList<HashMap<String, String>>();// 实例化ArrayList链表,用来存放HashMap对象

  // 实例化HashMap对象,用来存放用户名和IP
  HashMap<String, String> map1 = new HashMap<String, String>();
  map1.put("user_name", "shyboy");
  map1.put("user_ip", "192.168.0.1");
  HashMap<String, String> map2 = new HashMap<String, String>();
  map2.put("user_name", "playboy");
  map2.put("user_ip", "192.168.0.2");
  HashMap<String, String> map3 = new HashMap<String, String>();
  map3.put("user_name", "simplyboy");
  map3.put("user_ip", "192.168.0.3");

  // 添加HashMap集合到ArrayList链表中
  list.add(map1);
  list.add(map2);
  list.add(map3);

  SimpleAdapter listSimpleAdapter = new SimpleAdapter(this, list,
    R.layout.user, new String[] { "user_name", "user_ip" },
    new int[] { R.id.userNameId, R.id.ipId });// 实例化适配器
  this.setListAdapter(listSimpleAdapter);

 }

 // 当点击ListView内容时触发该事件
 @Override
 protected void onListItemClick(ListView l, View v, int position, long id) {

  super.onListItemClick(l, v, position, id);
  System.out.println("id is:" + id);
  System.out.println("position is:" + position);

 }

}

 

希望对大家有所帮助,呵呵……

0
0
分享到:
评论

相关推荐

    Android中ListView使用SimpleAdapter适配器实例

    Android中尝试气泡短信编程初探实例 ListView使用SimpleAdapter适配器详解 具体参考小魏博客:http://blog.csdn.net/xiaowei_cqu/article/details/7045497

    android的listview嵌套listview,列表嵌套列表 android studio版本

    在实际开发中,为了优化性能,通常会使用ViewHolder模式来减少视图查找的时间,同时对ListView进行适当的滚动优化,如使用懒加载、设置Item的复用策略等。 最后,记得处理触摸事件,确保点击父ListView的条目时不会...

    Android中ListView添加头部

    本篇文章将详细介绍如何在Android的ListView中添加头部。 首先,我们来理解一下“ListView添加头部”的概念。在Android中,头部视图通常是一个单独的布局,它可以是任何类型的视图,如TextView、ImageView或者...

    android多选ListView示例

    这个状态可以通过Adapter中的一个布尔数组来实现,与ListView中的条目位置相对应。 ```java boolean[] selectedItems = new boolean[listData.size()]; ArrayAdapter&lt;String&gt; adapter = new ArrayAdapter(this, ...

    android关于listview之列表分组

    android关于listview之列表分组,像Q上一样显示列表项

    android中ListView嵌套GridView的使用

    在Android开发中,ListView和GridView是两种常用的布局控件,它们各自有其特定的应用场景。ListView主要用于展示大量的可滚动数据,而GridView则呈现一个固定的网格布局。然而,在某些情况下,我们可能需要在一个...

    Android中ListView+Adapter

    总之,理解并熟练掌握ListView与Adapter的使用是Android开发中的重要技能。ArrayAdapter适合简单的数据展示,SimpleAdapter能处理稍微复杂的结构,而BaseAdapter则提供了最大的灵活性,适用于各种定制需求。通过实践...

    Android用listview显示数据库中的数据

    在Android开发中,将...总之,Android应用连接后台MySQL数据库并在ListView中展示数据,是一个涉及网络通信、数据解析、UI设计等多个环节的过程。理解和掌握这个过程,对于Android开发者来说,是非常重要的实践技能。

    Android中ListView表头表尾

    本教程将详细讲解如何在Android中使用ListView,特别是添加表头(headView)和表尾(bootView)。 首先,我们需要了解ListView的基本结构。ListView是一个视图容器,它可以动态加载并显示大量的子视图(View)。...

    Android使用ListView实现时间轴

    这可以通过使用dp单位、比例值或在XML布局中使用尺寸资源来实现。 6. **性能优化**:ListView的优化是必不可少的。通过使用convertView在`getView()`方法中复用视图,可以显著提高列表滚动的流畅性。同时,考虑使用...

    Android中ListView中数据按照时间\日期分组(分类)标题可悬浮

    本示例项目"Android中ListView中数据按照时间/日期分组(分类)标题可悬浮"就是针对这种情况的一个解决方案,它模仿了虎扑应用的特性,实现了PinnedSectionListView,即在滚动时保持分组标题悬浮显示,同时没有集成...

    android SQlite、listView中加按钮的使用

    在ListView中添加按钮,可以增强交互性,实现更多功能。这通常涉及到自定义Adapter和ViewHolder模式,以提高性能和避免视图复用时的错位问题。 1. 自定义Adapter:你需要继承BaseAdapter或者ArrayAdapter,并重写...

    Android ListView边框圆角美化

    在Android开发中,ListView是常用的一种控件,用于展示大量数据列表。为了提升用户体验和界面设计的美观性,我们常常需要对ListView进行定制化,包括设置边框和实现圆角效果。本文将深入探讨如何在Android中实现...

    androidlistview里面使用radiobutton

    为了在ListView中使用RadioButton,我们需要创建一个自定义的Adapter,比如继承自BaseAdapter。这个Adapter负责加载数据并为每个ListView项创建一个RadioButton。以下是一个基本的Adapter示例: ```java public ...

    android中listview多选demo

    在Android的ListView中实现多选,通常涉及到以下几个关键知识点: 1. **CheckedTextView**:这是Android提供的一个内置视图,它继承自TextView,并增加了复选框的功能。在ListView的每个列表项中使用...

    Android中ListView实现表格效果

    在Android开发中,ListView是一种非常常见的控件,用于展示大量数据列表。然而,有时我们不仅需要展示单一列表,还可能需要实现类似表格的效果,比如显示多列数据。本篇文章将详细讲解如何在Android中利用ListView...

    android listview 里面使用checkbox

    综上所述,要在Android的ListView中使用Checkbox,我们需要创建自定义Adapter,设计Checkbox的布局,管理复选状态,监听并处理用户操作,同时注意性能优化和状态恢复。在实际项目中,这样的实现方式能够提供灵活的...

    android中ListView下拉刷新

    Adapter负责将数据转化为ListView中的各个Item。当数据刷新后,Adapter需要更新数据集,并调用`notifyDataSetChanged()`通知ListView数据已改变,以便重新渲染视图。 5. **数据加载策略**:在下拉刷新时,通常会...

    Android ListView使用技巧

    在Android开发中,ListView是应用界面设计中非常常见的一种组件,尤其在展示大量数据时,它的高效滚动性能和可复用视图机制使其成为开发者首选。本篇文章将深入探讨几个关键的Android ListView使用技巧,帮助你提升...

    android listview的使用方法

    本篇文章将深入探讨如何在Android中使用ListView,包括基本配置、适配器(Adapter)的使用以及一些优化技巧。 首先,我们需要在布局文件中添加ListView元素。在XML布局中,你可以这样定义一个ListView: ```xml ...

Global site tag (gtag.js) - Google Analytics