阅读更多

Android 提供了相当多的UI,在android.widget 的UI组件库,下面就让我们看看他是ListView的用法吧。

 

下面的Demo 是一个

 

/* * Copyright (C) 2008 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * *      http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */package com.example.android.apis.view;import android.app.ListActivity;import android.os.Bundle;import android.widget.ArrayAdapter;import android.widget.ListView;/** * This example shows how to use choice mode on a list. This list is  * in CHOICE_MODE_SINGLE mode, which means the items behave like * checkboxes. */public class List10 extends ListActivity {    @Override    public void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setListAdapter(new ArrayAdapter(this,                android.R.layout.simple_list_item_single_choice, GENRES));        final ListView listView = getListView();        listView.setItemsCanFocus(false);        listView.setChoiceMode(ListView.CHOICE_MODE_SINGLE);    }    private static final String[] GENRES = new String[] {        "Action", "Adventure", "Animation", "Children", "Comedy", "Documentary", "Drama",        "Foreign", "History", "Independent", "Romance", "Sci-Fi", "Television", "Thriller"    };

 

上面是一个单选的List Demo。

 

对于需要多选的话可以改变这些参数就OK了

 

 

setListAdapter(new ArrayAdapter(this,                android.R.layout.simple_list_item_multiple_choice, GENRES));        final ListView listView = getListView();        listView.setItemsCanFocus(false);        listView.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE);

很简单吧,Android的开发确实很不错。

 

 

 

更多相关文章

  1. Android成长之路-Android组件_EditView例子小解1
  2. android am 启动activity service or broadcast及参数传递
  3. ReactNative 在用react-navigation组件时,没有 navigator.getCurr
  4. Android Studio第三十八期 - HIOS跳转协议解决URI跳转原生页面并
  5. Android API——自定义组件(Custom Components)
  6. 学习Android从0开始之基础篇(3)-视图组件之布局管理器
  7. Android SDK 安装中组件的离线安装方法 (share)

随机推荐

  1. Android(安卓)API中文文档AccessibilityS
  2. 【Android】RelativeLayout相对布局属性
  3. android下eclipse中This LinearLayout la
  4. Android(安卓)开发————1、Android基
  5. Android:安卓资源引用符号的含义
  6. Android(安卓)中启动自己另一个程序的act
  7. Android(安卓)xml资源文件中@、@android:
  8. [Google Android] Android(安卓)SDK Tool
  9. 【转】Android(安卓)ADB命令集
  10. Android(安卓)studio使用笔记。。。