Android ListView用法(1),不用ListActivity实现

Android ListView用法(1),不用ListActivity实现,第1张

概述原文链接:http://www.cnblogs.com/wuyunan/archive/2009/09/04/1560288.html首先是Layout文件:<LinearLayoutxmlns:android="http://schemas.android.com/apkes/android"android:orientation="vertical"android:layou 原文链接:http://www.cnblogs.com/wuyunan/archive/2009/09/04/1560288.html

首先是Layout文件:

@H_502_2@<linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID"
    androID:orIEntation="vertical"
@H_502_2@ androID:layout_wIDth="fill_parent"
    androID:layout_height="fill_parent">
@H_502_2@
 
@H_502_2@
    <!-- The frame layout is here since we will be showing either
@H_502_2@ the empty vIEw or the List vIEw. -->
    <FrameLayout
@H_502_2@ androID:layout_wIDth="fill_parent"
        androID:layout_height="0dip"
@H_502_2@ androID:layout_weight="1" >
        <!-- Here is the List. Since we are using a ListActivity, we
@H_502_2@ have to call it "@androID:ID/List" so ListActivity will
             find it -->
@H_502_2@ <ListVIEw androID:ID="@+ID/main2_List"
            androID:layout_wIDth="fill_parent" 
@H_502_2@ androID:layout_height="fill_parent"
            androID:drawSelectorOntop="false"/>
@H_502_2@
    </FrameLayout>
@H_502_2@
</linearLayout>

其次是Activity:先创建一个类继承Activitiy

重写onCreate方法

public voID onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentVIEw(R.layout.main2);
                //TO-DO
                ListVIEw ListVIEw = (ListVIEw) findVIEwByID(R.ID.main2_List);
		userAdapter = new UserAdapter(this);
		ListVIEw.setAdapter(listadapter);
		ListVIEw.setBackgroundDrawable(null);
		ListVIEw.setonItemClickListener(new OnItemClickListener() {
			public voID onItemClick(AdapterVIEw<?> arg0, VIEw arg1,
					int position, long ID) {
				//TO-DO
			}
		});
	}

转载于:https://www.cnblogs.com/wuyunan/archive/2009/09/04/1560288.HTML

总结

以上是内存溢出为你收集整理的Android ListView用法(1),不用ListActivity实现全部内容,希望文章能够帮你解决Android ListView用法(1),不用ListActivity实现所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1111715.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-29
下一篇 2022-05-29

发表评论

登录后才能评论

评论列表(0条)

保存