2013年6月5日
摘要: 主页面的xml文件<?xml version="1.0" encoding="utf-8"?><FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" > <LinearLayout android:id="@+id/layout_ 阅读全文
posted @ 2013-06-05 18:18 大米稀饭 阅读(735) 评论(0) 推荐(0)
摘要: 布局文件<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" > <com.nil.android.keyword.KeywordsFlow android:id="@+id/keywordsFlow" android:layout_width="fil 阅读全文
posted @ 2013-06-05 17:10 大米稀饭 阅读(252) 评论(0) 推荐(0)
摘要: 1.格式化 当前日期 2013-01-02 public String FormatCurrentDate(int year, int month, int day) { String format = null; if (month < 10) { if (day < 10) { format = year + "-0" + month + "-0" + day; } else { format = year + "-0" + month + "-" + ... 阅读全文
posted @ 2013-06-05 16:32 大米稀饭 阅读(307) 评论(0) 推荐(0)