最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

Android列表實現(xiàn)(2)_游標列表案例講解

 更新時間:2012年12月30日 11:50:54   作者:  
最近開始學習android的ui 游標列表實現(xiàn),先上幾個相關的例子,后續(xù)還會有更新,感興趣的朋友可以研究下
復制代碼 代碼如下:

import android.app.ListActivity;
import android.database.Cursor;
import android.os.Bundle;
import android.provider.Contacts.Phones;
import android.widget.ListAdapter;
import android.widget.SimpleCursorAdapter;

/**
* A list view example where the
* data comes from a cursor, and a
* SimpleCursorListAdapter is used to map each item to a two-line
* display.
*/
public class List3 extends ListActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);

// Get a cursor with all phones
Cursor c = getContentResolver().query(Phones.CONTENT_URI, null, null, null, null);
startManagingCursor(c);

// Map Cursor columns to views defined in simple_list_item_2.xml
ListAdapter adapter = new SimpleCursorAdapter(this,
android.R.layout.simple_list_item_2, c,
new String[] { Phones.NAME, Phones.NUMBER },
new int[] { android.R.id.text1, android.R.id.text2 });
setListAdapter(adapter);
}

}

注意 該例子要給程序賦予權限
復制代碼 代碼如下:

<uses-permission android:name="android.permission.READ_CONTACTS"/>

simple_list_item_2.xml
復制代碼 代碼如下:

<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2006 The Android Open Source Project

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.
-->

<TwoLineListItem xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="?android:attr/listPreferredItemHeight"
android:mode="twoLine"
>

<TextView android:id="@android:id/text1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="?android:attr/listPreferredItemPaddingLeft"
android:layout_marginTop="8dip"
android:textAppearance="?android:attr/textAppearanceListItem"
/>

<TextView android:id="@android:id/text2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@android:id/text1"
android:layout_alignLeft="@android:id/text1"
android:textAppearance="?android:attr/textAppearanceSmall"
/>

</TwoLineListItem>

相關文章

最新評論

梧州市| 高平市| 宿州市| 乌拉特后旗| 海口市| 巴林右旗| 曲麻莱县| 诸暨市| 德州市| 铜梁县| 武隆县| 宁乡县| 乐至县| 黑龙江省| 天长市| 定远县| 杨浦区| 宁化县| 大庆市| 广西| 繁峙县| 河北省| 乌鲁木齐县| 自治县| 桐柏县| 响水县| 敦煌市| 江安县| 中山市| 睢宁县| 阆中市| 乐安县| 迁西县| 邹平县| 卓尼县| 临江市| 芒康县| 盐城市| 陆河县| 外汇| 蒲江县|