`

android中的ListView的使用方法

阅读更多

首先是主activity也就是ListActivityTest.java:

package txlong.ListActivityTest;

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;
import android.widget.Toast;

public class ListActivityTest 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>>();
		HashMap<String, String> map1 = new HashMap<String, String>();
		HashMap<String, String> map2 = new HashMap<String, String>();
		HashMap<String, String> map3 = new HashMap<String, String>();
		map1.put("userip", "123.12.0.1");
		map1.put("username", "zhangsan");
		map2.put("userip", "147.0.23.4");
		map2.put("username", "lisi");
		map3.put("userip", "153.35.0.32");
		map3.put("username", "wangwu");
		list.add(map1);
		list.add(map2);
		list.add(map3);
		SimpleAdapter sa = new SimpleAdapter(this, list, R.layout.user,
				new String[] { "userip", "username" }, new int[] { R.id.userip,
						R.id.username });
		setListAdapter(sa);
	}

	@Override
	protected void onListItemClick(ListView l, View v, int position, long id) {

		super.onListItemClick(l, v, position, id);
		Toast.makeText(this, id + "", Toast.LENGTH_SHORT).show();
	}

}

 用到的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:id="@+id/listLinerLayout"
		android:orientation="vertical" 
		android:layout_width="fill_parent" 
		android:layout_height="wrap_content">

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

	</LinearLayout>
</LinearLayout>

 然后是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="wrap_content"
	android:padding="10dip">

	<TextView android:id="@+id/userip" 
		android:width="200dip"
		android:layout_width="wrap_content"
		android:layout_height="wrap_content" />

	<TextView android:id="@+id/username" 
		android:layout_width="wrap_content"
		android:layout_height="wrap_content" />

</LinearLayout>
 
分享到:
评论

相关推荐

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

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

    android listview的使用方法

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

    Android中ListView添加头部

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

    android自定义listview使用方法

    - 创建一个XML布局文件,定义ListView中的每一项视图(item)。 ```xml &lt;!-- item_list.xml --&gt; &lt;LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_...

    Android ListView使用技巧

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

    Android中ListView的使用

    在Adapter的`getView()`方法中使用: ```java View itemView = LayoutInflater.from(parent.getContext()).inflate(R.layout.item_list, parent, false); TextView textView = (TextView) itemView.findViewById...

    android中ListView嵌套GridView的使用

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

    android多选ListView示例

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

    android SQlite、listView中加按钮的使用

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

    android关于listview之列表分组

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

    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使用SimpleAdapter适配器实例

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

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

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

    android listview使用方法demo

    ListView包含一个Adapter,它负责将数据转化为可以显示在ListView中的视图。Adapter通常会继承自BaseAdapter或ArrayAdapter,并实现其中的方法,如`getCount()`、`getItem()`、`getItemId()`和`getView()`。`getView...

    android listview 里面使用checkbox

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

    androidlistview里面使用radiobutton

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

    Android ListView边框圆角美化

    3. **适配器的使用**:在适配器类中,如`ArrayAdapter`或自定义的`BaseAdapter`,你需要使用`getView()`方法来返回ListView项的视图。确保在该方法中加载你刚才创建的布局文件,并正确地绑定数据。 4. **性能优化**...

Global site tag (gtag.js) - Google Analytics