首先是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

			}
		});
	}

相关文章:

  • 2022-12-23
  • 2021-11-20
  • 2022-12-23
  • 2021-11-02
  • 2022-12-23
  • 2022-12-23
  • 2021-06-17
  • 2021-11-30
猜你喜欢
  • 2022-12-23
  • 2021-07-12
  • 2022-01-11
  • 2021-09-08
  • 2022-12-23
  • 2021-08-04
相关资源
相似解决方案