Android中NotePad学习
NotePad 获取Note创建时的系统时间(最终修改时间),并对时间的显示格式进行统一化要求,以列表的形式将Note的标题,图标和所获取的创建时间显示出来, 代码: 添加显示时间的TextView < TextView android:id = "@+id/text1_time" android:layout_width = "match_parent" android:layout_height = "wrap_content" android:textAppearance = "?android:attr/textAppearanceSmall" android:paddingLeft = "5dip" android:textColor = "@color/colorBlack" /> 效果如下图: 从数据库中获取搜索结果,实现Note的标题搜索功能, 代码: < item android: id = "@+id/menu_search" android:title= "@string/menu_search" android:icon= "@android:drawable/ic_search_category_default" android:showAsAction= "always" > </ item > 效果如下: 笔记背景颜色选择功能,使用自定义Dialog