文章列表
一、首先定义一个排序规则:
class MyComparator implements Comparator<FoodInfo> {
public int compare(FoodInfo foodInfo1, FoodInfo foodInfo2) {
if (Integer.valueOf(foodInfo1.getFoodPrice()) > Integer
.valueOf(foodInfo2.getFoodPrice()))
return 1;
else if (Integer.valueOf(foodInfo1.getFoodP ...
一 、首先在布局文件里要创建一个创建一个子布局用来显示控件。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<com.google.android.maps ...
1. 正则表达式定义
正则表达式(regular expression)描述了一种字符串匹配的模式,可以用来检查一个串是否含有某种子串、将匹配的子串做替换或者从某个串中取出符合某个条件的子串等。
列目录时, dir *.txt或ls *.txt中的*.txt ...