zoukankan      html  css  js  c++  java
  • Android ListView用法(1),不用ListActivity实现

    首先是Layout文件:

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="vertical"
        android:layout_width="fill_parent" 
        android:layout_height="fill_parent">
        
     
        
        <!-- The frame layout is here since we will be showing either
        the empty view or the list view.  -->
        <FrameLayout
            android:layout_width="fill_parent" 
            android:layout_height="0dip"
            android:layout_weight="1" >
            <!-- Here is the list. Since we are using a ListActivity, we
                 have to call it "@android:id/list" so ListActivity will
                 find it -->
            <ListView android:id="@+id/main2_list"
                android:layout_width="fill_parent" 
                android:layout_height="fill_parent"
                android:drawSelectorOnTop="false"/>
                        
        </FrameLayout>
            
    </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
    
    
    
    			}
    
    		});
    
    	}
    今天脚踏实地,明天全身轻松
  • 相关阅读:
    EF性能之关联加载
    【迁移】—Entity Framework实例详解
    GRIDVIEW多行多列合并单元格(合并列)
    使用Word2013发布随笔到博客园
    课堂资料下载-有问题加群-为杜绝有广告泛滥.固加群收费.
    strstr ShellCode实现
    X86保护模式入门简介
    WDK7600编译器环境配置
    内核驱动驱动对象 Driver_OBJECT
    基本的三角函数总结
  • 原文地址:https://www.cnblogs.com/wuyunan/p/1560288.html
Copyright © 2011-2022 走看看