本邮件内容由第三方提供,如果您不想继续收到该邮件,可 点此退订 。
Android切近实战(八) 阅读原文»
Android切近实战(八)
天冷了,老夫要把伙食搞上去,这不最近在软件园二楼吃,伙食15块,杠杠的。
美包包,不说了,进入正题。今天老夫要讲的是读取联系人,其实我做这个的初衷是想做一个短信拦截,电话拦截的功能。
我们先看一下界面,还是不错的,挺绚丽的。
OK,我们一看就知道,这又是一个ListView。目前的功能是当你在复选框打钩,点击后面的拨号就会将电话打出去。如果不打钩,电话则不会拨出去。OK,我们先看看页面布局
<? xml version = "1.0" encoding = "utf-8" ?> < LinearLayout xmlns:android = "http://schemas.android.com/apk/res/android" android:layout_width = "match_parent" android:layout_height = "match_parent" android:orientation = "vertical" > < ListView android:id = "@+id/contactListView" android:descendantFocusability = "blocksDescendants" android:layout_width = "fill_parent" android:layout_height = "fill_parent" android:divider = "@color/teal" android:dividerHeight = "1dp" > android:orientation = "horizontal" android:layout_width = "fill_parent" android:layout_height = "wrap_content" > < Button android:id = "@+id/btnSelAll" android:text = "@string/btnSelAll" android:textColor = "@color/teal" android:textSize = "14dp" android:textStyle = "bold" android:layout_weight = "1" android:layout_width = "fill_parent" android:layout_height = "fill_parent" ></ Button > < Button android:id = "@+id/btnInverseSel" android:text = "@string/btnSelInverse" android:textColor = "@color/teal" android:layout_marginLeft = "1dp" android:layout_weight = "1" android:textSize = "14dp" android:textStyle = "bold" android:layout_width = "fill_parent" android:layout_height = "fill_parent" ></ Button > < Button android:id = "@+id/btnSet" android:text = "@string/btnSet" android:layout_weight = "1" android:textColor = "@color/teal" android:layout_marginLeft = "1dp" android:textSize = "14dp" android:textStyle = "bold" android:layout_width = "fill_parent" android:layout_height = "fill_parent" ></ Button > </ LinearLayout > |
我们再看看ListView要加载的模版
订阅:
博文评论 (Atom)
|
没有评论:
发表评论