基本视图——ListView

作者:追风剑情 发布于:2015-9-3 20:50 分类:Android

示例一下:显示一个长列表

代码


  1. package com.example.androidtest;
  2.  
  3. import android.app.ListActivity;
  4. import android.os.Bundle;
  5. import android.view.View;
  6. import android.widget.ArrayAdapter;
  7. import android.widget.ListView;
  8. import android.widget.Toast;
  9.  
  10. public class BasicView5Activity extends ListActivity {
  11.  
  12. String[] presidents = {
  13. "Dwight D. Eisenhower",
  14. "John F. Kennedy",
  15. "Lyndon B. Johnson",
  16. "Richard Nixon",
  17. "Gerald Ford",
  18. "Jimmy Carter",
  19. "Ronald Reagan",
  20. "George H. W. Bush",
  21. "Bill Clinton",
  22. "George W. Bush",
  23. "Barack Obama"
  24. };
  25. @Override
  26. protected void onCreate(Bundle savedInstanceState) {
  27. super.onCreate(savedInstanceState);
  28. //ListActivity本身已经包含了一个ListView,所以不需要下面这句。
  29. //setContentView(R.layout.activity_basic_view5);
  30. setListAdapter(new ArrayAdapter<String>(this,
  31. android.R.layout.simple_list_item_1, presidents));
  32. }
  33. /**
  34. * 当单击ListView中的一个列表项时,将触发onListItemClick()方法
  35. */
  36. public void onListItemClick(ListView parent, View v, int position, long id)
  37. {
  38. Toast.makeText(this, "You have selected "+presidents[position], Toast.LENGTH_SHORT).show();
  39. }
  40. }


运行效果

lllllllllllll.png


示例二:多选列表

把列表项存储在strings.xml中

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <resources>
  3. <string-array name="presidents_array">
  4. <item>John F. Kennedy</item>
  5. <item>Lyndon B. Johnson</item>
  6. <item>Richard Nixon</item>
  7. <item>Gerald Ford</item>
  8. <item>Jimmy Carter</item>
  9. <item>Ronald Reagan</item>
  10. <item>George H. W. Bush</item>
  11. <item>Bill Clinton</item>
  12. <item>George W. Bush</item>
  13. <item>Barack Obama</item>
  14. </string-array>
  15. </resources>

视图

  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:layout_width="fill_parent"
  4. android:layout_height="fill_parent"
  5. android:orientation="vertical"
  6. tools:context="${relativePackage}.${activityClass}" >
  7.  
  8. <Button android:id="@+id/btn"
  9. android:layout_width="wrap_content"
  10. android:layout_height="wrap_content"
  11. android:text="Show selected items"
  12. android:onClick="onClick" />
  13. <ListView
  14. android:id="@+id/android:list"
  15. android:layout_width="wrap_content"
  16. android:layout_height="wrap_content" />
  17. </LinearLayout>

代码

  1. package com.example.androidtest;
  2.  
  3. import android.app.ListActivity;
  4. import android.os.Bundle;
  5. import android.view.View;
  6. import android.widget.ArrayAdapter;
  7. import android.widget.ListView;
  8. import android.widget.Toast;
  9.  
  10. public class BasicView5Activity extends ListActivity {
  11.  
  12. String[] presidents;
  13. @Override
  14. protected void onCreate(Bundle savedInstanceState) {
  15. super.onCreate(savedInstanceState);
  16. setContentView(R.layout.activity_basic_view5);
  17.  
  18. ListView lstView = getListView();
  19. //lstView.setChoiceMode(ListView.CHOICE_MODE_NONE);
  20. //lstView.setChoiceMode(ListView.CHOICE_MODE_SINGLE);
  21. lstView.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE);//多选
  22. presidents = getResources().getStringArray(R.array.presidents_array);
  23. setListAdapter(new ArrayAdapter<String>(this,
  24. android.R.layout.simple_list_item_checked, presidents));
  25. //启用筛选功能
  26. lstView.setTextFilterEnabled(true);
  27. }
  28. /**
  29. * 当单击ListView中的一个列表项时,将触发onListItemClick()方法
  30. */
  31. public void onListItemClick(ListView parent, View v, int position, long id)
  32. {
  33. Toast.makeText(this, "You have selected "+presidents[position], Toast.LENGTH_SHORT).show();
  34. }
  35. public void onClick(View view)
  36. {
  37. ListView lstView = getListView();
  38. String itemsSelected = "Selected items: \n";
  39. for (int i=0; i<lstView.getCount(); i++)
  40. {
  41. if(lstView.isItemChecked(i)){
  42. itemsSelected += lstView.getItemAtPosition(i) + "\n";
  43. }
  44. }
  45. Toast.makeText(this, itemsSelected, Toast.LENGTH_SHORT).show();
  46. }
  47. }

运行效果

l222222222222222222222.png

标签: Android

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号